fix:优化试题内容和样式排版
This commit is contained in:
21
frontend/node_modules/dom-helpers/LICENSE 2
generated
vendored
Normal file
21
frontend/node_modules/dom-helpers/LICENSE 2
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Jason Quense
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
70
frontend/node_modules/dom-helpers/README 2.md
generated
vendored
Normal file
70
frontend/node_modules/dom-helpers/README 2.md
generated
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
# dom-helpers
|
||||
|
||||
tiny modular DOM lib for ie9+
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm i -S dom-helpers
|
||||
```
|
||||
|
||||
Mostly just naive wrappers around common DOM API inconsistencies, Cross browser work is minimal and mostly taken from jQuery. This library doesn't do a lot to normalize behavior across browsers, it mostly seeks to provide a common interface, and eliminate the need to write the same damn `if (ie9)` statements in every project.
|
||||
|
||||
For example `on()` works in all browsers ie9+ but it uses the native event system so actual event oddities will continue to exist. If you need **robust** cross-browser support, use jQuery. If you are just tired of rewriting:
|
||||
|
||||
```js
|
||||
if (document.addEventListener)
|
||||
return (node, eventName, handler, capture) =>
|
||||
node.addEventListener(eventName, handler, capture || false)
|
||||
else if (document.attachEvent)
|
||||
return (node, eventName, handler) =>
|
||||
node.attachEvent('on' + eventName, handler)
|
||||
```
|
||||
|
||||
over and over again, or you need a ok `getComputedStyle` polyfill but don't want to include all of jQuery, use this.
|
||||
|
||||
dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` where needed
|
||||
|
||||
The real advantage to this collection is that any method can be required individually, meaning bundlers like webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as `React` where you only occasionally need to do direct DOM manipulation.
|
||||
|
||||
All methods are exported as a flat namesapce
|
||||
|
||||
```js
|
||||
var helpers = require('dom-helpers')
|
||||
var offset = require('dom-helpers/offset')
|
||||
|
||||
// style is a function
|
||||
require('dom-helpers/css')(node, { width: '40px' })
|
||||
```
|
||||
|
||||
- dom-helpers
|
||||
- `ownerDocument(element)`: returns the element's document owner
|
||||
- `ownerWindow(element)`: returns the element's document window
|
||||
- `activeElement`: return focused element safely
|
||||
- `querySelectorAll(element, selector)`: optimized qsa, uses `getElementBy{Id|TagName|ClassName}` if it can.
|
||||
- `contains(container, element)`
|
||||
- `height(element, useClientHeight)`
|
||||
- `width(element, useClientWidth)`
|
||||
- `matches(element, selector)`
|
||||
- `offset(element)` -> `{ top: Number, left: Number, height: Number, width: Number}`
|
||||
- `offsetParent(element)`: return the parent node that the element is offset from
|
||||
- `position(element, [offsetParent]`: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" one
|
||||
- `scrollTop(element, [value])`
|
||||
- `scrollLeft(element, [value])`
|
||||
- `scrollParent(element)`
|
||||
- `addClass(element, className)`
|
||||
- `removeClass(element, className)`
|
||||
- `hasClass(element, className)`
|
||||
- `toggleClass(element, className)`
|
||||
- `style(element, propName)` or `style(element, objectOfPropValues)`
|
||||
- `getComputedStyle(element)` -> `getPropertyValue(name)`
|
||||
- `animate(node, properties, duration, easing, callback)` programmatically start css transitions
|
||||
- `transitionEnd(node, handler, [duration], [padding])` listens for transition end, and ensures that the handler if called even if the transition fails to fire its end event. Will attempt to read duration from the element, otherwise one can be provided
|
||||
- `addEventListener(node, eventName, handler, [options])`:
|
||||
- `removeEventListener(node, eventName, handler, [options])`:
|
||||
- `listen(node, eventName, handler, [options])`: wraps `addEventlistener` and returns a function that calls `removeEventListener` for you
|
||||
- `filter(selector, fn)`: returns a function handler that only fires when the target matches or is contained in the selector ex: `on(list, 'click', filter('li > a', handler))`
|
||||
- `requestAnimationFrame(cb)` returns an ID for canceling
|
||||
- `cancelAnimationFrame(id)`
|
||||
- `scrollbarSize([recalc])` returns the scrollbar's width size in pixels
|
||||
- `scrollTo(element, [scrollParent])`
|
||||
48
frontend/node_modules/dom-helpers/package 2.json
generated
vendored
Normal file
48
frontend/node_modules/dom-helpers/package 2.json
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"name": "dom-helpers",
|
||||
"version": "5.2.1",
|
||||
"description": "tiny modular DOM lib for ie9+",
|
||||
"author": {
|
||||
"name": "Jason Quense",
|
||||
"email": "monastic.panic@gmail.com"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/react-bootstrap/dom-helpers.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "cjs/index.js",
|
||||
"types": "cjs/index.d.ts",
|
||||
"module": "esm/index.js",
|
||||
"keywords": [
|
||||
"dom-helpers",
|
||||
"react-component",
|
||||
"dom",
|
||||
"api",
|
||||
"cross-browser",
|
||||
"style",
|
||||
"event",
|
||||
"height",
|
||||
"width",
|
||||
"dom-helpers",
|
||||
"class",
|
||||
"classlist",
|
||||
"css"
|
||||
],
|
||||
"publishConfig": {
|
||||
"directory": "lib"
|
||||
},
|
||||
"release": {
|
||||
"conventionalCommits": true
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.8.7",
|
||||
"csstype": "^3.0.2"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/react-bootstrap/dom-helpers/issues"
|
||||
},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"homepage": "https://github.com/react-bootstrap/dom-helpers#readme",
|
||||
"_id": "dom-helpers@5.2.0"
|
||||
}
|
||||
Reference in New Issue
Block a user