prvi
21
ZpcBulletinBoard/wwwroot/lib/spin/LICENSE.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2011 Felix Gnass [fgnass at neteye dot de]
|
||||
|
||||
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.
|
||||
9
ZpcBulletinBoard/wwwroot/lib/spin/Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
all:
|
||||
@mkdir -p dist
|
||||
@cp spin.js dist/
|
||||
@uglifyjs -mt --unsafe -o dist/spin.min.js spin.js
|
||||
|
||||
clean:
|
||||
@rm -r dist
|
||||
|
||||
.PHONY: clean all
|
||||
21
ZpcBulletinBoard/wwwroot/lib/spin/README.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# spin.js
|
||||
|
||||
An animated CSS3 loading spinner with VML fallback for IE.
|
||||
|
||||
* No images, no external CSS
|
||||
* No dependencies
|
||||
* Highly configurable
|
||||
* Resolution independent
|
||||
* Uses VML as fallback in old IEs
|
||||
* Uses @keyframe animations, falling back to setTimeout()
|
||||
* Works in all major browsers, including IE6
|
||||
* Small footprint (~1.9K gzipped)
|
||||
* MIT License
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
new Spinner({color:'#fff', lines: 12}).spin(target);
|
||||
```
|
||||
|
||||
For an interactive demo and a list of all supported options please refer to the [project's homepage](http://fgnass.github.com/spin.js).
|
||||
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/bg.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/browsers.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/crosshair.gif
Normal file
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
Sample tooltip code. Only works on grade A browsers (so no IE6,7 or 8).
|
||||
|
||||
See: http://nicolasgallagher.com/multiple-backgrounds-and-borders-with-css2/ for full info on
|
||||
how to style generated content & the associated pitfalls
|
||||
|
||||
This code to be taken as experimental & untested - use at your discretion
|
||||
|
||||
If showing the tooltip above the sider handle you are relegated to showing
|
||||
single line tooltips due to styling constraints!
|
||||
*/
|
||||
|
||||
.fd-slider-handle:before,
|
||||
.fd-slider-handle:after
|
||||
{
|
||||
/* Remove from screen */
|
||||
opacity:0;
|
||||
/* The following rules are not really needed as no browser yet supports CSS transitions
|
||||
on generated content but I'll leave it in for the day when they do! */
|
||||
|
||||
/* Firefox */
|
||||
-moz-transition-property: opacity;
|
||||
-moz-transition-duration: 1s;
|
||||
-moz-transition-delay: 1s;
|
||||
/* WebKit */
|
||||
-webkit-transition-property: opacity;
|
||||
-webkit-transition-duration: 1s;
|
||||
-webkit-transition-delay: 1s;
|
||||
/* Opera */
|
||||
-o-transition-property: opacity;
|
||||
-o-transition-duration: 1s;
|
||||
-o-transition-delay: 1s;
|
||||
/* Standard */
|
||||
transition-property: opacity;
|
||||
transition-duration: 1s;
|
||||
transition-delay: 1s;
|
||||
}
|
||||
/*
|
||||
The tooltip body - as we position it above the slider and position the tooltip arrow
|
||||
below it, we need to know the height of the body. This means that multi-line tooltips
|
||||
are not supported.
|
||||
|
||||
To support multi-line tooltips, you will need to position the tooltip below the slider
|
||||
and the tooltip pointer above the tooltip body. Additionally, you will have to set the
|
||||
tooltip bodies "height" to auto
|
||||
*/
|
||||
.fd-slider-focused .fd-slider-handle:before,
|
||||
.fd-slider-hover .fd-slider-handle:before,
|
||||
.fd-slider-active .fd-slider-handle:before
|
||||
{
|
||||
display:block;
|
||||
position:absolute;
|
||||
top:-21px;
|
||||
left:-8px;
|
||||
margin:0;
|
||||
width:20px;
|
||||
padding:3px;
|
||||
height:14px;
|
||||
line-height:12px;
|
||||
text-align: center;
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
color:#fff;
|
||||
text-shadow: 1px 1px 1px #1a3a95;
|
||||
background:#2f6ee0;
|
||||
z-index:1;
|
||||
/* Use the ARIA valuetext property, set by the script, to generate the tooltip content */
|
||||
content:attr(aria-valuetext);
|
||||
/* Border radius and box shadow */
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius:3px;
|
||||
border-radius:3px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
-moz-box-shadow: 0 0 4px #aaa;
|
||||
-webkit-box-shadow: 0 0 4px #aaa;
|
||||
box-shadow: 0px 0px 4px #999;
|
||||
/* Change opacity for transition */
|
||||
opacity: 1;
|
||||
}
|
||||
/* The tooltip pointer */
|
||||
.fd-slider-focused .fd-slider-handle:after,
|
||||
.fd-slider-hover .fd-slider-handle:after,
|
||||
.fd-slider-active .fd-slider-handle:after
|
||||
{
|
||||
outline:none;
|
||||
content:"";
|
||||
display:block;
|
||||
position:absolute;
|
||||
top:-9px;
|
||||
left:50%;
|
||||
margin:0 0 0 -5px;
|
||||
background:#2f6ee0;
|
||||
z-index:2;
|
||||
width:10px;
|
||||
height:10px;
|
||||
overflow:hidden;
|
||||
/* Rotate element by 45 degress to get the "\/" pointer effect */
|
||||
-webkit-transform: rotate(45deg);
|
||||
-moz-transform: rotate(45deg);
|
||||
-o-transform: rotate(45deg);
|
||||
/* Add a box shadow */
|
||||
-moz-box-shadow: 0 0 4px #aaa;
|
||||
-webkit-box-shadow: 0 0 4px #aaa;
|
||||
box-shadow: 0 0 4px #aaa;
|
||||
/* Clip */
|
||||
clip:rect(4px, 14px, 14px, 4px);
|
||||
/* Change opacity for transition */
|
||||
opacity: 1;
|
||||
}
|
||||
/* Remove completely for IE */
|
||||
.oldie .fd-slider-handle:before,
|
||||
.oldie .fd-slider-handle:after
|
||||
{
|
||||
display:none;
|
||||
}
|
||||
143
ZpcBulletinBoard/wwwroot/lib/spin/assets/fd-slider/fd-slider.css
Normal file
@@ -0,0 +1,143 @@
|
||||
|
||||
/* The styles given to the associated form element in order to hide it */
|
||||
.fd-form-element-hidden
|
||||
{
|
||||
display:none;
|
||||
}
|
||||
/* Horizontal Outer wrapper - all other DOM elements added as children to this top level wrapper */
|
||||
.fd-slider
|
||||
{
|
||||
width:100%;
|
||||
/* The height of the slider handle */
|
||||
height:20px;
|
||||
margin:0;
|
||||
}
|
||||
/* Vertical Outer wrapper - all other DOM elements added as children to this top level wrapper */
|
||||
.fd-slider-vertical
|
||||
{
|
||||
/* The width of the slider handle */
|
||||
width:20px;
|
||||
/* Fill the available space */
|
||||
height:100%;
|
||||
/* Set a 10 pixel right and bottom margin */
|
||||
margin:0 10px 10px 0;
|
||||
/* You may wish to float the vertical sliders left or display:inline-block */
|
||||
/* float:left; */
|
||||
}
|
||||
/* Shared rules - both horizontal & vertical sliders */
|
||||
.fd-slider,
|
||||
.fd-slider-vertical
|
||||
{
|
||||
/* display:block required as the wrapper element is a span */
|
||||
display:block;
|
||||
/* This lets us absolutely position the drag handle */
|
||||
position:relative;
|
||||
text-decoration:none;
|
||||
border:0 none;
|
||||
-moz-user-select:none;
|
||||
-khtml-user-select:none;
|
||||
-webkit-touch-callout:none;
|
||||
user-select:none;
|
||||
}
|
||||
.fd-slider-inner
|
||||
{
|
||||
/* Used by IE for the onfocus blur effect */
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* The inner track bar */
|
||||
.fd-slider-bar
|
||||
{
|
||||
position:absolute;
|
||||
display:block;
|
||||
z-index:2;
|
||||
height:6px;
|
||||
width:100%;
|
||||
border:1px solid #bbb;
|
||||
border-bottom:1px solid #fff;
|
||||
border-right:1px solid #fff;
|
||||
margin:0;
|
||||
padding:0;
|
||||
overflow:hidden;
|
||||
line-height:4px;
|
||||
top:8px;
|
||||
-moz-border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
border-radius:4px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background-color: #333;
|
||||
}
|
||||
/* The animated range bar */
|
||||
.fd-slider-range
|
||||
{
|
||||
position:absolute;
|
||||
display:block;
|
||||
z-index:3;
|
||||
height:6px;
|
||||
margin:0;
|
||||
padding:0 2px 0 0;
|
||||
overflow:hidden;
|
||||
top:9px;
|
||||
-moz-border-radius:2px;
|
||||
-webkit-border-radius:2px;
|
||||
border-radius:2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background-color: #eee;
|
||||
}
|
||||
/* The drag handle */
|
||||
.fd-slider-handle
|
||||
{
|
||||
position:absolute;
|
||||
display:block;
|
||||
padding:0;
|
||||
border:0 none;
|
||||
margin:0 0 0 1px;
|
||||
z-index:3;
|
||||
top:5px;
|
||||
left:0;
|
||||
width:12px;
|
||||
height:12px;
|
||||
line-height: 1px !important;
|
||||
outline:0 none;
|
||||
background: #eee;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 12px;
|
||||
-webkit-user-select: none;
|
||||
-webkit-touch-callout:none;
|
||||
-moz-user-select:none;
|
||||
-moz-user-focus:none;
|
||||
-moz-outline:0 none;
|
||||
user-select:none;
|
||||
}
|
||||
/* Focus styles */
|
||||
.fd-slider-handle:focus
|
||||
{
|
||||
outline:0 none;
|
||||
border:0 none;
|
||||
-moz-user-focus:normal;
|
||||
}
|
||||
button.fd-slider-handle:focus::-moz-focus-inner
|
||||
{
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
body.fd-slider-drag-vertical,
|
||||
body.fd-slider-drag-vertical *
|
||||
{
|
||||
/* Stop text selection */
|
||||
-moz-user-select:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
body.fd-slider-drag-horizontal,
|
||||
body.fd-slider-drag-horizontal *
|
||||
{
|
||||
/* Stop text selection */
|
||||
-moz-user-select:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
1212
ZpcBulletinBoard/wwwroot/lib/spin/assets/fd-slider/fd-slider.js
Normal file
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/github.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
166
ZpcBulletinBoard/wwwroot/lib/spin/assets/main.css
Normal file
@@ -0,0 +1,166 @@
|
||||
html, body {
|
||||
margin: 0;
|
||||
}
|
||||
html {
|
||||
background: url(bg.png);
|
||||
}
|
||||
body {
|
||||
color: #333;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
ul {
|
||||
padding: 0 0 0 20px;
|
||||
}
|
||||
#content {
|
||||
width: 75%;
|
||||
max-width: 800px;
|
||||
line-height: 1.4em;
|
||||
margin: 0 50px 50px 100px;
|
||||
text-shadow: 0px 1px 0px #fff;
|
||||
}
|
||||
#footer {
|
||||
background: #202020;
|
||||
overflow: hidden;
|
||||
color: #888;
|
||||
font-size: 12px;
|
||||
padding: 20px 0 100px 50px;
|
||||
position: relative;
|
||||
}
|
||||
#footer:before {
|
||||
content: '';
|
||||
display: block;
|
||||
box-shadow: 0 0 10px #000;
|
||||
height: 10px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: -10px;
|
||||
width: 100%;
|
||||
}
|
||||
#footer a.github {
|
||||
background: url(github.gif) no-repeat;
|
||||
width: 68px;
|
||||
height: 30px;
|
||||
text-indent: -999em;
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
}
|
||||
a {
|
||||
color: #333;
|
||||
}
|
||||
a:hover {
|
||||
color: #000;
|
||||
}
|
||||
pre {
|
||||
text-shadow: none;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
margin: 0 0 30px 0;
|
||||
}
|
||||
label {
|
||||
display: inline-block;
|
||||
width: 440px;
|
||||
font-size: 14px;
|
||||
vertical-align: top;
|
||||
}
|
||||
#opts label {
|
||||
line-height: 25px;
|
||||
width: 80px;
|
||||
}
|
||||
span.fd-slider {
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
}
|
||||
#logo {
|
||||
position: relative;
|
||||
height: 300px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
h1, h2, h3, #download a {
|
||||
font-family: 'Amaranth', sans-serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 200px;
|
||||
position: absolute;
|
||||
text-shadow: 0px 1px 0px #fff;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
margin: 45px 0 28px 0;
|
||||
}
|
||||
h3 {
|
||||
margin: 35px 0 10px 0;
|
||||
}
|
||||
#mask {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: url(bg.png) -100px 0;
|
||||
width: 240px;
|
||||
height: 85px;
|
||||
}
|
||||
#dot {
|
||||
position: absolute;
|
||||
left: 198px;
|
||||
top: 42px;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
}
|
||||
#ribbon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 149px;
|
||||
height: 149px;
|
||||
background:url(ribbon.png);
|
||||
_background: none;
|
||||
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=ribbon.png);
|
||||
}
|
||||
#preview {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
float: left;
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
margin: 0 20px 20px 0;
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
#demo {
|
||||
clear: both;
|
||||
}
|
||||
#demo form {
|
||||
width: 250px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
a.button {
|
||||
display: inline-block;
|
||||
background: #56ba4a;
|
||||
border: 3px solid #59a24f;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
font-family: 'Amaranth', sans-serif;
|
||||
font-size: 24px;
|
||||
padding: 10px 30px;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 1px #59a24f;
|
||||
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||
margin: 10px 20px 0 0;
|
||||
-webkit-transition: all 0.25s ease;
|
||||
}
|
||||
a.button:hover {
|
||||
background: #2f8325;
|
||||
box-shadow: none;
|
||||
}
|
||||
#contact img {
|
||||
float: left;
|
||||
border: 3px solid #eee;
|
||||
box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
|
||||
margin: 0 16px 50px 0;
|
||||
}
|
||||
49
ZpcBulletinBoard/wwwroot/lib/spin/assets/prettify.css
Normal file
@@ -0,0 +1,49 @@
|
||||
/* Pretty printing styles. Used with prettify.js. */
|
||||
/* Vim sunburst theme by David Leibovic */
|
||||
|
||||
pre .str, code .str { color: #65B042; } /* string - green */
|
||||
pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */
|
||||
pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */
|
||||
pre .typ, code .typ { color: #89bdff; } /* type - light blue */
|
||||
pre .lit, code .lit { color: #3387CC; } /* literal - blue */
|
||||
pre .pun, code .pun { color: #fff; } /* punctuation - white */
|
||||
pre .pln, code .pln { color: #fff; } /* plaintext - white */
|
||||
pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */
|
||||
pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */
|
||||
pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */
|
||||
pre .dec, code .dec { color: #3387CC; } /* decimal - blue */
|
||||
|
||||
pre.prettyprint, code.prettyprint {
|
||||
background-color: #333;
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
-o-border-radius: 8px;
|
||||
-ms-border-radius: 8px;
|
||||
-khtml-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
pre.prettyprint {
|
||||
padding: 1em;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
|
||||
/* Specify class=linenums on a pre to get line numbering */
|
||||
ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents via margin-left */
|
||||
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
|
||||
/* Alternate shading for lines */
|
||||
li.L1,li.L3,li.L5,li.L7,li.L9 { }
|
||||
|
||||
@media print {
|
||||
pre .str, code .str { color: #060; }
|
||||
pre .kwd, code .kwd { color: #006; font-weight: bold; }
|
||||
pre .com, code .com { color: #600; font-style: italic; }
|
||||
pre .typ, code .typ { color: #404; font-weight: bold; }
|
||||
pre .lit, code .lit { color: #044; }
|
||||
pre .pun, code .pun { color: #440; }
|
||||
pre .pln, code .pln { color: #000; }
|
||||
pre .tag, code .tag { color: #006; font-weight: bold; }
|
||||
pre .atn, code .atn { color: #404; }
|
||||
pre .atv, code .atv { color: #060; }
|
||||
}
|
||||
28
ZpcBulletinBoard/wwwroot/lib/spin/assets/prettify.js
Normal file
@@ -0,0 +1,28 @@
|
||||
var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
|
||||
(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
|
||||
[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c<
|
||||
f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&&
|
||||
(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r=
|
||||
{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length,
|
||||
t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b===
|
||||
"string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
|
||||
l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
|
||||
q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
|
||||
q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
|
||||
"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
|
||||
a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
|
||||
for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value",
|
||||
m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m=
|
||||
a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue=
|
||||
j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
|
||||
"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
|
||||
H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
|
||||
J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
|
||||
I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
|
||||
["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
|
||||
/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
|
||||
["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
|
||||
hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b=
|
||||
!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,
|
||||
250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",
|
||||
PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();
|
||||
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/preview.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
ZpcBulletinBoard/wwwroot/lib/spin/assets/ribbon.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
306
ZpcBulletinBoard/wwwroot/lib/spin/dist/spin.js
vendored
Normal file
@@ -0,0 +1,306 @@
|
||||
//fgnass.github.com/spin.js#v1.2.5
|
||||
(function(window, document, undefined) {
|
||||
|
||||
/**
|
||||
* Copyright (c) 2011 Felix Gnass [fgnass at neteye dot de]
|
||||
* Licensed under the MIT license
|
||||
*/
|
||||
|
||||
var prefixes = ['webkit', 'Moz', 'ms', 'O']; /* Vendor prefixes */
|
||||
var animations = {}; /* Animation rules keyed by their name */
|
||||
var useCssAnimations;
|
||||
|
||||
/**
|
||||
* Utility function to create elements. If no tag name is given,
|
||||
* a DIV is created. Optionally properties can be passed.
|
||||
*/
|
||||
function createEl(tag, prop) {
|
||||
var el = document.createElement(tag || 'div');
|
||||
var n;
|
||||
|
||||
for(n in prop) {
|
||||
el[n] = prop[n];
|
||||
}
|
||||
return el;
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends children and returns the parent.
|
||||
*/
|
||||
function ins(parent /* child1, child2, ...*/) {
|
||||
for (var i=1, n=arguments.length; i<n; i++) {
|
||||
parent.appendChild(arguments[i]);
|
||||
}
|
||||
return parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert a new stylesheet to hold the @keyframe or VML rules.
|
||||
*/
|
||||
var sheet = function() {
|
||||
var el = createEl('style');
|
||||
ins(document.getElementsByTagName('head')[0], el);
|
||||
return el.sheet || el.styleSheet;
|
||||
}();
|
||||
|
||||
/**
|
||||
* Creates an opacity keyframe animation rule and returns its name.
|
||||
* Since most mobile Webkits have timing issues with animation-delay,
|
||||
* we create separate rules for each line/segment.
|
||||
*/
|
||||
function addAnimation(alpha, trail, i, lines) {
|
||||
var name = ['opacity', trail, ~~(alpha*100), i, lines].join('-');
|
||||
var start = 0.01 + i/lines*100;
|
||||
var z = Math.max(1-(1-alpha)/trail*(100-start) , alpha);
|
||||
var prefix = useCssAnimations.substring(0, useCssAnimations.indexOf('Animation')).toLowerCase();
|
||||
var pre = prefix && '-'+prefix+'-' || '';
|
||||
|
||||
if (!animations[name]) {
|
||||
sheet.insertRule(
|
||||
'@' + pre + 'keyframes ' + name + '{' +
|
||||
'0%{opacity:'+z+'}' +
|
||||
start + '%{opacity:'+ alpha + '}' +
|
||||
(start+0.01) + '%{opacity:1}' +
|
||||
(start+trail)%100 + '%{opacity:'+ alpha + '}' +
|
||||
'100%{opacity:'+ z + '}' +
|
||||
'}', 0);
|
||||
animations[name] = 1;
|
||||
}
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries various vendor prefixes and returns the first supported property.
|
||||
**/
|
||||
function vendor(el, prop) {
|
||||
var s = el.style;
|
||||
var pp;
|
||||
var i;
|
||||
|
||||
if(s[prop] !== undefined) return prop;
|
||||
prop = prop.charAt(0).toUpperCase() + prop.slice(1);
|
||||
for(i=0; i<prefixes.length; i++) {
|
||||
pp = prefixes[i]+prop;
|
||||
if(s[pp] !== undefined) return pp;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets multiple style properties at once.
|
||||
*/
|
||||
function css(el, prop) {
|
||||
for (var n in prop) {
|
||||
el.style[vendor(el, n)||n] = prop[n];
|
||||
}
|
||||
return el;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fills in default values.
|
||||
*/
|
||||
function merge(obj) {
|
||||
for (var i=1; i < arguments.length; i++) {
|
||||
var def = arguments[i];
|
||||
for (var n in def) {
|
||||
if (obj[n] === undefined) obj[n] = def[n];
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the absolute page-offset of the given element.
|
||||
*/
|
||||
function pos(el) {
|
||||
var o = {x:el.offsetLeft, y:el.offsetTop};
|
||||
while((el = el.offsetParent)) {
|
||||
o.x+=el.offsetLeft;
|
||||
o.y+=el.offsetTop;
|
||||
}
|
||||
return o;
|
||||
}
|
||||
|
||||
var defaults = {
|
||||
lines: 12, // The number of lines to draw
|
||||
length: 7, // The length of each line
|
||||
width: 5, // The line thickness
|
||||
radius: 10, // The radius of the inner circle
|
||||
rotate: 0, // rotation offset
|
||||
color: '#000', // #rgb or #rrggbb
|
||||
speed: 1, // Rounds per second
|
||||
trail: 100, // Afterglow percentage
|
||||
opacity: 1/4, // Opacity of the lines
|
||||
fps: 20, // Frames per second when using setTimeout()
|
||||
zIndex: 2e9, // Use a high z-index by default
|
||||
className: 'spinner', // CSS class to assign to the element
|
||||
top: 'auto', // center vertically
|
||||
left: 'auto' // center horizontally
|
||||
};
|
||||
|
||||
/** The constructor */
|
||||
var Spinner = function Spinner(o) {
|
||||
if (!this.spin) return new Spinner(o);
|
||||
this.opts = merge(o || {}, Spinner.defaults, defaults);
|
||||
};
|
||||
|
||||
Spinner.defaults = {};
|
||||
merge(Spinner.prototype, {
|
||||
spin: function(target) {
|
||||
this.stop();
|
||||
var self = this;
|
||||
var o = self.opts;
|
||||
var el = self.el = css(createEl(0, {className: o.className}), {position: 'relative', zIndex: o.zIndex});
|
||||
var mid = o.radius+o.length+o.width;
|
||||
var ep; // element position
|
||||
var tp; // target position
|
||||
|
||||
if (target) {
|
||||
target.insertBefore(el, target.firstChild||null);
|
||||
tp = pos(target);
|
||||
ep = pos(el);
|
||||
css(el, {
|
||||
left: (o.left == 'auto' ? tp.x-ep.x + (target.offsetWidth >> 1) : o.left+mid) + 'px',
|
||||
top: (o.top == 'auto' ? tp.y-ep.y + (target.offsetHeight >> 1) : o.top+mid) + 'px'
|
||||
});
|
||||
}
|
||||
|
||||
el.setAttribute('aria-role', 'progressbar');
|
||||
self.lines(el, self.opts);
|
||||
|
||||
if (!useCssAnimations) {
|
||||
// No CSS animation support, use setTimeout() instead
|
||||
var i = 0;
|
||||
var fps = o.fps;
|
||||
var f = fps/o.speed;
|
||||
var ostep = (1-o.opacity)/(f*o.trail / 100);
|
||||
var astep = f/o.lines;
|
||||
|
||||
!function anim() {
|
||||
i++;
|
||||
for (var s=o.lines; s; s--) {
|
||||
var alpha = Math.max(1-(i+s*astep)%f * ostep, o.opacity);
|
||||
self.opacity(el, o.lines-s, alpha, o);
|
||||
}
|
||||
self.timeout = self.el && setTimeout(anim, ~~(1000/fps));
|
||||
}();
|
||||
}
|
||||
return self;
|
||||
},
|
||||
stop: function() {
|
||||
var el = this.el;
|
||||
if (el) {
|
||||
clearTimeout(this.timeout);
|
||||
if (el.parentNode) el.parentNode.removeChild(el);
|
||||
this.el = undefined;
|
||||
}
|
||||
return this;
|
||||
},
|
||||
lines: function(el, o) {
|
||||
var i = 0;
|
||||
var seg;
|
||||
|
||||
function fill(color, shadow) {
|
||||
return css(createEl(), {
|
||||
position: 'absolute',
|
||||
width: (o.length+o.width) + 'px',
|
||||
height: o.width + 'px',
|
||||
background: color,
|
||||
boxShadow: shadow,
|
||||
transformOrigin: 'left',
|
||||
transform: 'rotate(' + ~~(360/o.lines*i+o.rotate) + 'deg) translate(' + o.radius+'px' +',0)',
|
||||
borderRadius: (o.width>>1) + 'px'
|
||||
});
|
||||
}
|
||||
for (; i < o.lines; i++) {
|
||||
seg = css(createEl(), {
|
||||
position: 'absolute',
|
||||
top: 1+~(o.width/2) + 'px',
|
||||
transform: o.hwaccel ? 'translate3d(0,0,0)' : '',
|
||||
opacity: o.opacity,
|
||||
animation: useCssAnimations && addAnimation(o.opacity, o.trail, i, o.lines) + ' ' + 1/o.speed + 's linear infinite'
|
||||
});
|
||||
if (o.shadow) ins(seg, css(fill('#000', '0 0 4px ' + '#000'), {top: 2+'px'}));
|
||||
ins(el, ins(seg, fill(o.color, '0 0 1px rgba(0,0,0,.1)')));
|
||||
}
|
||||
return el;
|
||||
},
|
||||
opacity: function(el, i, val) {
|
||||
if (i < el.childNodes.length) el.childNodes[i].style.opacity = val;
|
||||
}
|
||||
});
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
// VML rendering for IE
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Check and init VML support
|
||||
*/
|
||||
!function() {
|
||||
|
||||
function vml(tag, attr) {
|
||||
return createEl('<' + tag + ' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">', attr);
|
||||
}
|
||||
|
||||
var s = css(createEl('group'), {behavior: 'url(#default#VML)'});
|
||||
|
||||
if (!vendor(s, 'transform') && s.adj) {
|
||||
|
||||
// VML support detected. Insert CSS rule ...
|
||||
sheet.addRule('.spin-vml', 'behavior:url(#default#VML)');
|
||||
|
||||
Spinner.prototype.lines = function(el, o) {
|
||||
var r = o.length+o.width;
|
||||
var s = 2*r;
|
||||
|
||||
function grp() {
|
||||
return css(vml('group', {coordsize: s +' '+s, coordorigin: -r +' '+-r}), {width: s, height: s});
|
||||
}
|
||||
|
||||
var margin = -(o.width+o.length)*2+'px';
|
||||
var g = css(grp(), {position: 'absolute', top: margin, left: margin});
|
||||
|
||||
var i;
|
||||
|
||||
function seg(i, dx, filter) {
|
||||
ins(g,
|
||||
ins(css(grp(), {rotation: 360 / o.lines * i + 'deg', left: ~~dx}),
|
||||
ins(css(vml('roundrect', {arcsize: 1}), {
|
||||
width: r,
|
||||
height: o.width,
|
||||
left: o.radius,
|
||||
top: -o.width>>1,
|
||||
filter: filter
|
||||
}),
|
||||
vml('fill', {color: o.color, opacity: o.opacity}),
|
||||
vml('stroke', {opacity: 0}) // transparent stroke to fix color bleeding upon opacity change
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if (o.shadow) {
|
||||
for (i = 1; i <= o.lines; i++) {
|
||||
seg(i, -2, 'progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)');
|
||||
}
|
||||
}
|
||||
for (i = 1; i <= o.lines; i++) seg(i);
|
||||
return ins(el, g);
|
||||
};
|
||||
Spinner.prototype.opacity = function(el, i, val, o) {
|
||||
var c = el.firstChild;
|
||||
o = o.shadow && o.lines || 0;
|
||||
if (c && i+o < c.childNodes.length) {
|
||||
c = c.childNodes[i+o]; c = c && c.firstChild; c = c && c.firstChild;
|
||||
if (c) c.opacity = val;
|
||||
}
|
||||
};
|
||||
}
|
||||
else {
|
||||
useCssAnimations = vendor(s, 'animation');
|
||||
}
|
||||
}();
|
||||
|
||||
window.Spinner = Spinner;
|
||||
|
||||
})(window, document);
|
||||
2
ZpcBulletinBoard/wwwroot/lib/spin/dist/spin.min.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
//fgnass.github.com/spin.js#v1.2.5
|
||||
(function(a,b,c){function g(a,c){var d=b.createElement(a||"div"),e;for(e in c)d[e]=c[e];return d}function h(a){for(var b=1,c=arguments.length;b<c;b++)a.appendChild(arguments[b]);return a}function j(a,b,c,d){var g=["opacity",b,~~(a*100),c,d].join("-"),h=.01+c/d*100,j=Math.max(1-(1-a)/b*(100-h),a),k=f.substring(0,f.indexOf("Animation")).toLowerCase(),l=k&&"-"+k+"-"||"";return e[g]||(i.insertRule("@"+l+"keyframes "+g+"{"+"0%{opacity:"+j+"}"+h+"%{opacity:"+a+"}"+(h+.01)+"%{opacity:1}"+(h+b)%100+"%{opacity:"+a+"}"+"100%{opacity:"+j+"}"+"}",0),e[g]=1),g}function k(a,b){var e=a.style,f,g;if(e[b]!==c)return b;b=b.charAt(0).toUpperCase()+b.slice(1);for(g=0;g<d.length;g++){f=d[g]+b;if(e[f]!==c)return f}}function l(a,b){for(var c in b)a.style[k(a,c)||c]=b[c];return a}function m(a){for(var b=1;b<arguments.length;b++){var d=arguments[b];for(var e in d)a[e]===c&&(a[e]=d[e])}return a}function n(a){var b={x:a.offsetLeft,y:a.offsetTop};while(a=a.offsetParent)b.x+=a.offsetLeft,b.y+=a.offsetTop;return b}var d=["webkit","Moz","ms","O"],e={},f,i=function(){var a=g("style");return h(b.getElementsByTagName("head")[0],a),a.sheet||a.styleSheet}(),o={lines:12,length:7,width:5,radius:10,rotate:0,color:"#000",speed:1,trail:100,opacity:.25,fps:20,zIndex:2e9,className:"spinner",top:"auto",left:"auto"},p=function q(a){if(!this.spin)return new q(a);this.opts=m(a||{},q.defaults,o)};p.defaults={},m(p.prototype,{spin:function(a){this.stop();var b=this,c=b.opts,d=b.el=l(g(0,{className:c.className}),{position:"relative",zIndex:c.zIndex}),e=c.radius+c.length+c.width,h,i;a&&(a.insertBefore(d,a.firstChild||null),i=n(a),h=n(d),l(d,{left:(c.left=="auto"?i.x-h.x+(a.offsetWidth>>1):c.left+e)+"px",top:(c.top=="auto"?i.y-h.y+(a.offsetHeight>>1):c.top+e)+"px"})),d.setAttribute("aria-role","progressbar"),b.lines(d,b.opts);if(!f){var j=0,k=c.fps,m=k/c.speed,o=(1-c.opacity)/(m*c.trail/100),p=m/c.lines;!function q(){j++;for(var a=c.lines;a;a--){var e=Math.max(1-(j+a*p)%m*o,c.opacity);b.opacity(d,c.lines-a,e,c)}b.timeout=b.el&&setTimeout(q,~~(1e3/k))}()}return b},stop:function(){var a=this.el;return a&&(clearTimeout(this.timeout),a.parentNode&&a.parentNode.removeChild(a),this.el=c),this},lines:function(a,b){function e(a,d){return l(g(),{position:"absolute",width:b.length+b.width+"px",height:b.width+"px",background:a,boxShadow:d,transformOrigin:"left",transform:"rotate("+~~(360/b.lines*c+b.rotate)+"deg) translate("+b.radius+"px"+",0)",borderRadius:(b.width>>1)+"px"})}var c=0,d;for(;c<b.lines;c++)d=l(g(),{position:"absolute",top:1+~(b.width/2)+"px",transform:b.hwaccel?"translate3d(0,0,0)":"",opacity:b.opacity,animation:f&&j(b.opacity,b.trail,c,b.lines)+" "+1/b.speed+"s linear infinite"}),b.shadow&&h(d,l(e("#000","0 0 4px #000"),{top:"2px"})),h(a,h(d,e(b.color,"0 0 1px rgba(0,0,0,.1)")));return a},opacity:function(a,b,c){b<a.childNodes.length&&(a.childNodes[b].style.opacity=c)}}),!function(){function a(a,b){return g("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">',b)}var b=l(g("group"),{behavior:"url(#default#VML)"});!k(b,"transform")&&b.adj?(i.addRule(".spin-vml","behavior:url(#default#VML)"),p.prototype.lines=function(b,c){function f(){return l(a("group",{coordsize:e+" "+e,coordorigin:-d+" "+ -d}),{width:e,height:e})}function k(b,e,g){h(i,h(l(f(),{rotation:360/c.lines*b+"deg",left:~~e}),h(l(a("roundrect",{arcsize:1}),{width:d,height:c.width,left:c.radius,top:-c.width>>1,filter:g}),a("fill",{color:c.color,opacity:c.opacity}),a("stroke",{opacity:0}))))}var d=c.length+c.width,e=2*d,g=-(c.width+c.length)*2+"px",i=l(f(),{position:"absolute",top:g,left:g}),j;if(c.shadow)for(j=1;j<=c.lines;j++)k(j,-2,"progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)");for(j=1;j<=c.lines;j++)k(j);return h(b,i)},p.prototype.opacity=function(a,b,c,d){var e=a.firstChild;d=d.shadow&&d.lines||0,e&&b+d<e.childNodes.length&&(e=e.childNodes[b+d],e=e&&e.firstChild,e=e&&e.firstChild,e&&(e.opacity=c))}):f=k(b,"animation")}(),a.Spinner=p})(window,document);
|
||||
57
ZpcBulletinBoard/wwwroot/lib/spin/example/jquery.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>spin.js</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
.preview {
|
||||
background: #aaa;
|
||||
color: black;
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
margin: 0 20px;
|
||||
float: left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
#preview2 {
|
||||
background: #666;
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="preview1" class="preview"></div>
|
||||
<div id="preview2" class="preview"></div>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
|
||||
<script src="../spin.js"></script>
|
||||
<script>
|
||||
$.fn.spin = function(opts) {
|
||||
this.each(function() {
|
||||
var $this = $(this),
|
||||
data = $this.data();
|
||||
|
||||
if (data.spinner) {
|
||||
data.spinner.stop();
|
||||
delete data.spinner;
|
||||
}
|
||||
if (opts !== false) {
|
||||
data.spinner = new Spinner($.extend({color: $this.css('color')}, opts)).spin(this);
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
$('#preview1').spin();
|
||||
$('#preview2').spin({color: '#fff'});
|
||||
|
||||
//Remove spinner upon click
|
||||
$('.preview').click(function() {
|
||||
$(this).spin(false);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
31
ZpcBulletinBoard/wwwroot/lib/spin/example/modernizr.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>spin.js</title>
|
||||
<script src="modernizr.js"></script>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
#preview {
|
||||
background: #aaa;
|
||||
color: black;
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
margin: 0 20px;
|
||||
float: left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<section id="preview"></section>
|
||||
|
||||
<script src="../spin.js"></script>
|
||||
<script>
|
||||
new Spinner().spin(document.getElementById('preview'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
1265
ZpcBulletinBoard/wwwroot/lib/spin/example/modernizr.js
Normal file
61
ZpcBulletinBoard/wwwroot/lib/spin/example/positioning.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>spin.js</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
div {
|
||||
|
||||
border-radius: 10px;
|
||||
}
|
||||
#target1 {
|
||||
background: #aaa url(../assets/crosshair.gif) center center no-repeat;
|
||||
width: 99px;
|
||||
height: 99px;
|
||||
padding: 15px;
|
||||
}
|
||||
#target2 {
|
||||
background: #bbb url(../assets/crosshair.gif) center center no-repeat;
|
||||
width: 99px;
|
||||
height: 99px;
|
||||
padding: 15px;
|
||||
}
|
||||
#target3 {
|
||||
background: #ccc url(../assets/crosshair.gif) center center no-repeat;
|
||||
width: 99px;
|
||||
height: 99px;
|
||||
padding: 15px;
|
||||
}
|
||||
#target4 {
|
||||
background: #ddd url(../assets/crosshair.gif) center center no-repeat;
|
||||
padding: 15px;
|
||||
width: 350px;
|
||||
height: 99px;
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="target1"></div>
|
||||
<div id="target2"></div>
|
||||
<div id="target3"></div>
|
||||
<div id="target4"><img src="../assets/browsers.png" style="position:relative;top:16px;left:-5px"></div>
|
||||
|
||||
<script src="../spin.js"></script>
|
||||
|
||||
<script>
|
||||
Spinner({radius: 10, length: 40}).spin(document.getElementById('target1'));
|
||||
Spinner({radius: 40, length: 10}).spin(document.getElementById('target2'));
|
||||
Spinner({top: 0, left: 0}).spin(document.getElementById('target3'));
|
||||
Spinner({radius: 30, length: 0, width: 10, color: '#C40000', trail: 40}).spin(document.getElementById('target4'));
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
74
ZpcBulletinBoard/wwwroot/lib/spin/example/settings.html
Normal file
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>spin.js</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
label {
|
||||
display: inline-block;
|
||||
width: 70px;
|
||||
line-height: 25px;
|
||||
}
|
||||
#preview {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
margin: 0 20px;
|
||||
float: left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="preview"></div>
|
||||
<form>
|
||||
<label>Lines:</label><input type="range" name="lines" min="5" max="16" step="2" value="12"><br>
|
||||
<label>Length:</label><input type="range" name="length" min="0" max="30" value="7"><br>
|
||||
<label>Width:</label><input type="range" name="width" min="2" max="20" value="4"><br>
|
||||
<label>Radius:</label><input type="range" name="radius" min="0" max="40" value="10"><br>
|
||||
<label>Rotate:</label><input type="range" name="rotate" min="0" max="90" value="0"><br>
|
||||
<label>Trail:</label><input type="range" name="trail" min="10" max="100" value="60"><br>
|
||||
<label>Speed:</label><input type="range" name="speed" min="0.5" max="2.2" step="0.1" value="1"><br>
|
||||
<label>Shadow:</label><input type="checkbox" name="shadow"><br>
|
||||
<label>Hwaccel:</label><input type="checkbox" name="hwaccel"><br>
|
||||
</form>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
|
||||
<script src="../spin.js"></script>
|
||||
<script>
|
||||
$.fn.spin = function(opts) {
|
||||
this.each(function() {
|
||||
var $this = $(this),
|
||||
data = $this.data();
|
||||
|
||||
if (data.spinner) {
|
||||
data.spinner.stop();
|
||||
delete data.spinner;
|
||||
}
|
||||
if (opts !== false) {
|
||||
data.spinner = new Spinner($.extend({color: $this.css('color')}, opts)).spin(this);
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
function update() {
|
||||
var opts = {};
|
||||
$('input[min]').each(function() {
|
||||
opts[this.name] = parseFloat(this.value);
|
||||
});
|
||||
$('input:checkbox').each(function() {
|
||||
opts[this.name] = this.checked;
|
||||
});
|
||||
$('#preview').spin(opts);
|
||||
}
|
||||
$('input[min]').change(update);
|
||||
$('input:checkbox').click(update);
|
||||
update();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
ZpcBulletinBoard/wwwroot/lib/spin/favicon.ico
Normal file
|
After Width: | Height: | Size: 11 KiB |
278
ZpcBulletinBoard/wwwroot/lib/spin/index.html
Normal file
@@ -0,0 +1,278 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>spin.js</title>
|
||||
<meta name="description" content="An animated CSS activity indicator with VML fallback.">
|
||||
<meta name="viewport" content="width=1024, maximum-scale=1">
|
||||
<meta property="og:image" content="http://fgnass.github.com/spin.js/assets/preview.jpg?v=1" />
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link href="assets/main.css?v=5" type="text/css" rel="stylesheet">
|
||||
<link href='http://fonts.googleapis.com/css?family=Amaranth:400,700' rel='stylesheet' type='text/css'>
|
||||
<link href="assets/prettify.css" type="text/css" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="assets/fd-slider/fd-slider.css?v=2">
|
||||
<link rel="stylesheet" type="text/css" href="assets/fd-slider/fd-slider-tooltip.css">
|
||||
<script type="text/javascript" src="assets/prettify.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="logo">
|
||||
<h1>spin.js</h1>
|
||||
<!--
|
||||
<div id="mask">
|
||||
<div id="dot"></div>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
|
||||
<a id="ribbon" href="http://github.com/fgnass/spin.js"></a>
|
||||
|
||||
<div id="content">
|
||||
|
||||
<div id="download">
|
||||
<a href="dist/spin.js" class="button">spin.js</a>
|
||||
<a href="dist/spin.min.js" class="button">spin.min.js</a>
|
||||
</div>
|
||||
|
||||
<div id="example">
|
||||
<h2>Example</h2>
|
||||
<div id="preview"></div>
|
||||
<form id="opts">
|
||||
<label>Lines:</label><input type="text" name="lines" min="5" max="16" step="2" value="12"><br>
|
||||
<label>Length:</label><input type="text" name="length" min="0" max="30" value="7"><br>
|
||||
<label>Width:</label><input type="text" name="width" min="2" max="20" value="4"><br>
|
||||
<label>Radius:</label><input type="text" name="radius" min="0" max="40" value="10"><br>
|
||||
<label>Rotate:</label><input type="text" name="rotate" min="0" max="90" value="0"><br>
|
||||
<label>Trail:</label><input type="text" name="trail" min="10" max="100" value="60"><br>
|
||||
<label>Speed:</label><input type="text" name="speed" min="0.5" max="2.2" step="0.1" value="1"><br>
|
||||
<label>Shadow:</label><input type="checkbox" name="shadow"><br>
|
||||
<label>Hwaccel:</label><input type="checkbox" name="hwaccel"><br>
|
||||
</form>
|
||||
<br clear="left">
|
||||
<input type="checkbox" id="share">
|
||||
<label for="share">
|
||||
<b>Share it!</b> If checked, the option values will be stored in the URL so that you can easily share your settings.
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<h2>Features</h2>
|
||||
<ul>
|
||||
<li>No images, no external CSS</li>
|
||||
<li>No dependencies (jQuery is <a href="#jquery">supported</a>, but not required)</li>
|
||||
<li>Highly configurable</li>
|
||||
<li>Resolution independent</li>
|
||||
<li>Uses VML as fallback in old IEs</li>
|
||||
<li>Uses @keyframe animations, falling back to setTimeout()</li>
|
||||
<li>Works in all major browsers, including IE6</li>
|
||||
<li>MIT License</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="usage">Usage</h2>
|
||||
<pre class="prettyprint">
|
||||
var opts = {
|
||||
lines: <span id="opt-lines" class="lit">12</span>, // The number of lines to draw
|
||||
length: <span id="opt-length" class="lit">7</span>, // The length of each line
|
||||
width: <span id="opt-width" class="lit">5</span>, // The line thickness
|
||||
radius: <span id="opt-radius" class="lit">10</span>, // The radius of the inner circle
|
||||
rotate: <span id="opt-rotate" class="lit">0</span>, // The rotation offset
|
||||
color: '#000', // #rgb or #rrggbb
|
||||
speed: <span id="opt-speed" class="lit">1</span>, // Rounds per second
|
||||
trail: <span id="opt-trail" class="lit">100</span>, // Afterglow percentage
|
||||
shadow: <span id="opt-shadow" class="kwd">true</span>, // Whether to render a shadow
|
||||
hwaccel: <span id="opt-hwaccel" class="kwd">false</span>, // Whether to use hardware acceleration
|
||||
className: 'spinner', // The CSS class to assign to the spinner
|
||||
zIndex: 2e9, // The z-index (defaults to 2000000000)
|
||||
top: 'auto', // Top position relative to parent in px
|
||||
left: 'auto' // Left position relative to parent in px
|
||||
};
|
||||
var target = document.getElementById('foo');
|
||||
var spinner = new Spinner(opts).spin(target);
|
||||
</pre>
|
||||
<p>
|
||||
The <code>spin()</code> method creates the necessary HTML elements and starts the animation. If a target
|
||||
element is passed as argument, the spinner is added as first child and horizontally and vertically centered.
|
||||
</p>
|
||||
<h3>Manual positioning</h3>
|
||||
<p>
|
||||
By default the spinner is centered within the target element. Alternatively you may specify a <code>top</code> and
|
||||
<code>left</code> option to position the spinner relative to the target element.
|
||||
</p>
|
||||
<p>
|
||||
In order to manually insert the spinner into the DOM you can invoke the <code>spin()</code> method without any
|
||||
arguments and use the <code>el</code> property to access the HTML element:
|
||||
</p>
|
||||
<pre class="prettyprint">
|
||||
var spinner = new Spinner().spin();
|
||||
target.appendChild(spinner.el);
|
||||
</pre>
|
||||
<p>
|
||||
The returned element is a DIV with <code>position:relative</code> and no height. The center of the spinner
|
||||
is positioned at the top left corner of this DIV.
|
||||
</p>
|
||||
<h3>Hiding the spinner</h3>
|
||||
<p>
|
||||
To hide the spinner, invoke the <code>stop()</code> method, which removes the UI elements from the DOM and stops
|
||||
the animation. Stopped spinners may be reused by calling <code>spin()</code> again.
|
||||
</p>
|
||||
<h3 id="jquery">jQuery plugin</h3>
|
||||
<p>
|
||||
Spin.js does not require jQuery. Anyway, if you use jQuery (or zepto.js) you may use the following plugin:
|
||||
</p>
|
||||
<pre class="prettyprint">
|
||||
$.fn.spin = function(opts) {
|
||||
this.each(function() {
|
||||
var $this = $(this),
|
||||
data = $this.data();
|
||||
|
||||
if (data.spinner) {
|
||||
data.spinner.stop();
|
||||
delete data.spinner;
|
||||
}
|
||||
if (opts !== false) {
|
||||
data.spinner = new Spinner($.extend({color: $this.css('color')}, opts)).spin(this);
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
</pre>
|
||||
<p>
|
||||
Alternatively you may use this <a href="https://gist.github.com/1290439">advanced version</a> written by Bradley Smith.
|
||||
</p>
|
||||
<h2>Supported browsers</h2>
|
||||
<img src="assets/browsers.png">
|
||||
<p>
|
||||
Spin.js has been successfully tested in the following browsers:
|
||||
<ul>
|
||||
<li>Chrome</li>
|
||||
<li>Safari 3.2+</li>
|
||||
<li>Firefox 3.5+</li>
|
||||
<li>IE 6,7,8,9</li>
|
||||
<li>Opera 10.6+</li>
|
||||
<li>Mobile Safari (iOS 3.1+)</li>
|
||||
<li>Android 2.3+</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<h2>Changes</h2>
|
||||
<h3 id="v1.2.5">Version 1.2.5 (22.03.2012)</h3>
|
||||
<ul>
|
||||
<li>Fixed <a href="https://github.com/fgnass/spin.js/issues/58">a bug</a> that prevented the VML from being displayed when Modernizr or html5shiv was used.</li>
|
||||
<li>Added a rotate option. See <a href="https://github.com/fgnass/spin.js/issues/60">issue #60</a>.</li>
|
||||
<li>The constructor property is now preserved. See <a href="https://github.com/fgnass/spin.js/pull/61">issue #61</a>.</li>
|
||||
</ul>
|
||||
<h3 id="v1.2.4">Version 1.2.4 (28.02.2012)</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Added new config options: top, left, zIndex and className.
|
||||
</li>
|
||||
</ul>
|
||||
<h3 id="v1.2.3">Version 1.2.3 (30.01.2012)</h3>
|
||||
<ul>
|
||||
<li>Hardware acceleration is now disabled by default. See <a href="https://github.com/fgnass/spin.js/issues/47">issue #47</a> and
|
||||
<a href="https://github.com/fgnass/spin.js/issues/41">issue #41</a>.</li>
|
||||
</ul>
|
||||
<h3 id="v1.2.2">Version 1.2.2 (8.11.2011)</h3>
|
||||
<ul>
|
||||
<li>Fixed a cross-domain issue with the dynamically created stylesheet. See <a href="https://github.com/fgnass/spin.js/issues/36">issue #36</a>.</li>
|
||||
</ul>
|
||||
<h3 id="v1.2.1">Version 1.2.1 (5.10.2011)</h3>
|
||||
<ul>
|
||||
<li>Added a sanity check. See <a href="https://github.com/fgnass/spin.js/issues/31">issue #31</a>.</li>
|
||||
</ul>
|
||||
<h3 id="v1.2">Version 1.2 (16.9.2011)</h3>
|
||||
<ul>
|
||||
<li>Calling <tt>spin()</tt> now invokes <tt>stop()</tt> first. See <a href="https://github.com/fgnass/spin.js/issues/28">issue #28</a>.</li>
|
||||
<li>Added a workaround for the IE negative margin bug. See <a href="https://github.com/fgnass/spin.js/issues/27">issue #27</a>.</li>
|
||||
<li>The <tt>new</tt> operator is now optional. See <a href="https://github.com/fgnass/spin.js/issues/14">issue #14</a>.</li>
|
||||
<li>Improved accessibility by adding <tt>aria-role="progressbar"</tt>.</a>
|
||||
</ul>
|
||||
|
||||
<h3 id="v1.1">Version 1.1 (6.9.2011)</h3>
|
||||
<ul>
|
||||
<li>Fixed <a href="https://github.com/fgnass/spin.js/issues/12">a bug</a> where the animation occasionally got out of sync in Mobile Safari and Android's built-in WebKit.</li>
|
||||
<li>Fixed <a href="https://github.com/fgnass/spin.js/issues/23">a bug</a> where the spinner was misplaced when the target element had a non-zero padding.</li>
|
||||
<li>Optimized the code for gzip compression. While the minified version got slightly larger, the zipped version now only weighs 1.7K.</li>
|
||||
</ul>
|
||||
<h3 id="v1.0">Version 1.0 (16.8.2011)</h3>
|
||||
<ul>
|
||||
<li>Initial release</li>
|
||||
</ul>
|
||||
|
||||
<h2>Contact</h2>
|
||||
<p id="contact">
|
||||
<img width="57" height="57" src="http://www.gravatar.com/avatar/f1f2e1842f6ff681a6d1b0a2405d0117.png">
|
||||
If you encounter any problems, please use the <a href="https://github.com/fgnass/spin.js/issues">GitHub issue tracker</a>.<br>
|
||||
For updates <a href="http://twitter.com/fgnass">follow me on Twitter</a>.<br>
|
||||
If you like spin.js and use it in the wild, let me know.
|
||||
</p>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<a class="github" href="http://github.com">Hosted on GitHub</a>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="assets/fd-slider/fd-slider.js"></script>
|
||||
<script src="dist/spin.min.js?v=1.2.5"></script>
|
||||
<script>
|
||||
$.fn.spin = function(opts) {
|
||||
this.each(function() {
|
||||
var $this = $(this),
|
||||
data = $this.data();
|
||||
|
||||
if (data.spinner) {
|
||||
data.spinner.stop();
|
||||
delete data.spinner;
|
||||
}
|
||||
if (opts !== false) {
|
||||
data.spinner = new Spinner($.extend({color: $this.css('color')}, opts)).spin(this);
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
//$('#dot').spin();
|
||||
prettyPrint();
|
||||
function update() {
|
||||
var opts = {};
|
||||
$('#opts input[min]').each(function() {
|
||||
$('#opt-' + this.name).text(opts[this.name] = parseFloat(this.value));
|
||||
});
|
||||
$('#opts input:checkbox').each(function() {
|
||||
opts[this.name] = this.checked;
|
||||
$('#opt-' + this.name).text(this.checked);
|
||||
});
|
||||
$('#preview').spin(opts);
|
||||
if ($('#share').is(':checked')) {
|
||||
window.location.replace('#?' + $('form').serialize());
|
||||
}
|
||||
}
|
||||
$(function() {
|
||||
var params = {};
|
||||
var hash = /^#\?(.*)/.exec(location.hash);
|
||||
if (hash) {
|
||||
$('#share').prop('checked', true);
|
||||
$.each(hash[1].split(/&/), function(i, pair) {
|
||||
var kv = pair.split(/=/);
|
||||
params[kv[0]] = kv[kv.length-1];
|
||||
});
|
||||
}
|
||||
$('#opts input[min]').each(function() {
|
||||
var val = params[this.name];
|
||||
if (val !== undefined) this.value = val;
|
||||
this.onchange = update;
|
||||
});
|
||||
$('#opts input:checkbox').each(function() {
|
||||
this.checked = !!params[this.name];
|
||||
this.onclick = update;
|
||||
});
|
||||
$('#share').click(function() {
|
||||
window.location.replace(this.checked ? '#?' + $('form').serialize() : '#!');
|
||||
});
|
||||
update();
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var _gaq=[['_setAccount','UA-19036385-2'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,"script"));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
23
ZpcBulletinBoard/wwwroot/lib/spin/package.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "spin",
|
||||
"version": "0.0.1",
|
||||
"description": "spin.js spinner component",
|
||||
"main": "spin.js",
|
||||
"directories": {
|
||||
"example": "example"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/visionmedia/spin.js.git"
|
||||
},
|
||||
"keywords": [
|
||||
"spin",
|
||||
"spinner",
|
||||
"component"
|
||||
],
|
||||
"component": {
|
||||
"scripts": {
|
||||
"spin": "spin.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
302
ZpcBulletinBoard/wwwroot/lib/spin/spin.js
Normal file
@@ -0,0 +1,302 @@
|
||||
//fgnass.github.com/spin.js#v1.2.5
|
||||
/**
|
||||
* Copyright (c) 2011 Felix Gnass [fgnass at neteye dot de]
|
||||
* Licensed under the MIT license
|
||||
*/
|
||||
|
||||
var prefixes = ['webkit', 'Moz', 'ms', 'O']; /* Vendor prefixes */
|
||||
var animations = {}; /* Animation rules keyed by their name */
|
||||
var useCssAnimations;
|
||||
|
||||
/**
|
||||
* Utility function to create elements. If no tag name is given,
|
||||
* a DIV is created. Optionally properties can be passed.
|
||||
*/
|
||||
function createEl(tag, prop) {
|
||||
var el = document.createElement(tag || 'div');
|
||||
var n;
|
||||
|
||||
for(n in prop) {
|
||||
el[n] = prop[n];
|
||||
}
|
||||
return el;
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends children and returns the parent.
|
||||
*/
|
||||
function ins(parent /* child1, child2, ...*/) {
|
||||
for (var i=1, n=arguments.length; i<n; i++) {
|
||||
parent.appendChild(arguments[i]);
|
||||
}
|
||||
return parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert a new stylesheet to hold the @keyframe or VML rules.
|
||||
*/
|
||||
var sheet = function() {
|
||||
var el = createEl('style');
|
||||
ins(document.getElementsByTagName('head')[0], el);
|
||||
return el.sheet || el.styleSheet;
|
||||
}();
|
||||
|
||||
/**
|
||||
* Creates an opacity keyframe animation rule and returns its name.
|
||||
* Since most mobile Webkits have timing issues with animation-delay,
|
||||
* we create separate rules for each line/segment.
|
||||
*/
|
||||
function addAnimation(alpha, trail, i, lines) {
|
||||
var name = ['opacity', trail, ~~(alpha*100), i, lines].join('-');
|
||||
var start = 0.01 + i/lines*100;
|
||||
var z = Math.max(1-(1-alpha)/trail*(100-start) , alpha);
|
||||
var prefix = useCssAnimations.substring(0, useCssAnimations.indexOf('Animation')).toLowerCase();
|
||||
var pre = prefix && '-'+prefix+'-' || '';
|
||||
|
||||
if (!animations[name]) {
|
||||
sheet.insertRule(
|
||||
'@' + pre + 'keyframes ' + name + '{' +
|
||||
'0%{opacity:'+z+'}' +
|
||||
start + '%{opacity:'+ alpha + '}' +
|
||||
(start+0.01) + '%{opacity:1}' +
|
||||
(start+trail)%100 + '%{opacity:'+ alpha + '}' +
|
||||
'100%{opacity:'+ z + '}' +
|
||||
'}', 0);
|
||||
animations[name] = 1;
|
||||
}
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries various vendor prefixes and returns the first supported property.
|
||||
**/
|
||||
function vendor(el, prop) {
|
||||
var s = el.style;
|
||||
var pp;
|
||||
var i;
|
||||
|
||||
if(s[prop] !== undefined) return prop;
|
||||
prop = prop.charAt(0).toUpperCase() + prop.slice(1);
|
||||
for(i=0; i<prefixes.length; i++) {
|
||||
pp = prefixes[i]+prop;
|
||||
if(s[pp] !== undefined) return pp;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets multiple style properties at once.
|
||||
*/
|
||||
function css(el, prop) {
|
||||
for (var n in prop) {
|
||||
el.style[vendor(el, n)||n] = prop[n];
|
||||
}
|
||||
return el;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fills in default values.
|
||||
*/
|
||||
function merge(obj) {
|
||||
for (var i=1; i < arguments.length; i++) {
|
||||
var def = arguments[i];
|
||||
for (var n in def) {
|
||||
if (obj[n] === undefined) obj[n] = def[n];
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the absolute page-offset of the given element.
|
||||
*/
|
||||
function pos(el) {
|
||||
var o = {x:el.offsetLeft, y:el.offsetTop};
|
||||
while((el = el.offsetParent)) {
|
||||
o.x+=el.offsetLeft;
|
||||
o.y+=el.offsetTop;
|
||||
}
|
||||
return o;
|
||||
}
|
||||
|
||||
var defaults = {
|
||||
lines: 12, // The number of lines to draw
|
||||
length: 7, // The length of each line
|
||||
width: 5, // The line thickness
|
||||
radius: 10, // The radius of the inner circle
|
||||
rotate: 0, // rotation offset
|
||||
color: '#000', // #rgb or #rrggbb
|
||||
speed: 1, // Rounds per second
|
||||
trail: 100, // Afterglow percentage
|
||||
opacity: 1/4, // Opacity of the lines
|
||||
fps: 20, // Frames per second when using setTimeout()
|
||||
zIndex: 2e9, // Use a high z-index by default
|
||||
className: 'spinner', // CSS class to assign to the element
|
||||
top: 'auto', // center vertically
|
||||
left: 'auto' // center horizontally
|
||||
};
|
||||
|
||||
/** The constructor */
|
||||
var Spinner = function Spinner(o) {
|
||||
if (!this.spin) return new Spinner(o);
|
||||
this.opts = merge(o || {}, Spinner.defaults, defaults);
|
||||
};
|
||||
|
||||
Spinner.defaults = {};
|
||||
merge(Spinner.prototype, {
|
||||
spin: function(target) {
|
||||
this.stop();
|
||||
var self = this;
|
||||
var o = self.opts;
|
||||
var el = self.el = css(createEl(0, {className: o.className}), {position: 'relative', zIndex: o.zIndex});
|
||||
var mid = o.radius+o.length+o.width;
|
||||
var ep; // element position
|
||||
var tp; // target position
|
||||
|
||||
if (target) {
|
||||
target.insertBefore(el, target.firstChild||null);
|
||||
tp = pos(target);
|
||||
ep = pos(el);
|
||||
css(el, {
|
||||
left: (o.left == 'auto' ? tp.x-ep.x + (target.offsetWidth >> 1) : o.left+mid) + 'px',
|
||||
top: (o.top == 'auto' ? tp.y-ep.y + (target.offsetHeight >> 1) : o.top+mid) + 'px'
|
||||
});
|
||||
}
|
||||
|
||||
el.setAttribute('aria-role', 'progressbar');
|
||||
self.lines(el, self.opts);
|
||||
|
||||
if (!useCssAnimations) {
|
||||
// No CSS animation support, use setTimeout() instead
|
||||
var i = 0;
|
||||
var fps = o.fps;
|
||||
var f = fps/o.speed;
|
||||
var ostep = (1-o.opacity)/(f*o.trail / 100);
|
||||
var astep = f/o.lines;
|
||||
|
||||
!function anim() {
|
||||
i++;
|
||||
for (var s=o.lines; s; s--) {
|
||||
var alpha = Math.max(1-(i+s*astep)%f * ostep, o.opacity);
|
||||
self.opacity(el, o.lines-s, alpha, o);
|
||||
}
|
||||
self.timeout = self.el && setTimeout(anim, ~~(1000/fps));
|
||||
}();
|
||||
}
|
||||
return self;
|
||||
},
|
||||
stop: function() {
|
||||
var el = this.el;
|
||||
if (el) {
|
||||
clearTimeout(this.timeout);
|
||||
if (el.parentNode) el.parentNode.removeChild(el);
|
||||
this.el = undefined;
|
||||
}
|
||||
return this;
|
||||
},
|
||||
lines: function(el, o) {
|
||||
var i = 0;
|
||||
var seg;
|
||||
|
||||
function fill(color, shadow) {
|
||||
return css(createEl(), {
|
||||
position: 'absolute',
|
||||
width: (o.length+o.width) + 'px',
|
||||
height: o.width + 'px',
|
||||
background: color,
|
||||
boxShadow: shadow,
|
||||
transformOrigin: 'left',
|
||||
transform: 'rotate(' + ~~(360/o.lines*i+o.rotate) + 'deg) translate(' + o.radius+'px' +',0)',
|
||||
borderRadius: (o.width>>1) + 'px'
|
||||
});
|
||||
}
|
||||
for (; i < o.lines; i++) {
|
||||
seg = css(createEl(), {
|
||||
position: 'absolute',
|
||||
top: 1+~(o.width/2) + 'px',
|
||||
transform: o.hwaccel ? 'translate3d(0,0,0)' : '',
|
||||
opacity: o.opacity,
|
||||
animation: useCssAnimations && addAnimation(o.opacity, o.trail, i, o.lines) + ' ' + 1/o.speed + 's linear infinite'
|
||||
});
|
||||
if (o.shadow) ins(seg, css(fill('#000', '0 0 4px ' + '#000'), {top: 2+'px'}));
|
||||
ins(el, ins(seg, fill(o.color, '0 0 1px rgba(0,0,0,.1)')));
|
||||
}
|
||||
return el;
|
||||
},
|
||||
opacity: function(el, i, val) {
|
||||
if (i < el.childNodes.length) el.childNodes[i].style.opacity = val;
|
||||
}
|
||||
});
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
// VML rendering for IE
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Check and init VML support
|
||||
*/
|
||||
!function() {
|
||||
|
||||
function vml(tag, attr) {
|
||||
return createEl('<' + tag + ' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">', attr);
|
||||
}
|
||||
|
||||
var s = css(createEl('group'), {behavior: 'url(#default#VML)'});
|
||||
|
||||
if (!vendor(s, 'transform') && s.adj) {
|
||||
|
||||
// VML support detected. Insert CSS rule ...
|
||||
sheet.addRule('.spin-vml', 'behavior:url(#default#VML)');
|
||||
|
||||
Spinner.prototype.lines = function(el, o) {
|
||||
var r = o.length+o.width;
|
||||
var s = 2*r;
|
||||
|
||||
function grp() {
|
||||
return css(vml('group', {coordsize: s +' '+s, coordorigin: -r +' '+-r}), {width: s, height: s});
|
||||
}
|
||||
|
||||
var margin = -(o.width+o.length)*2+'px';
|
||||
var g = css(grp(), {position: 'absolute', top: margin, left: margin});
|
||||
|
||||
var i;
|
||||
|
||||
function seg(i, dx, filter) {
|
||||
ins(g,
|
||||
ins(css(grp(), {rotation: 360 / o.lines * i + 'deg', left: ~~dx}),
|
||||
ins(css(vml('roundrect', {arcsize: 1}), {
|
||||
width: r,
|
||||
height: o.width,
|
||||
left: o.radius,
|
||||
top: -o.width>>1,
|
||||
filter: filter
|
||||
}),
|
||||
vml('fill', {color: o.color, opacity: o.opacity}),
|
||||
vml('stroke', {opacity: 0}) // transparent stroke to fix color bleeding upon opacity change
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if (o.shadow) {
|
||||
for (i = 1; i <= o.lines; i++) {
|
||||
seg(i, -2, 'progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)');
|
||||
}
|
||||
}
|
||||
for (i = 1; i <= o.lines; i++) seg(i);
|
||||
return ins(el, g);
|
||||
};
|
||||
Spinner.prototype.opacity = function(el, i, val, o) {
|
||||
var c = el.firstChild;
|
||||
o = o.shadow && o.lines || 0;
|
||||
if (c && i+o < c.childNodes.length) {
|
||||
c = c.childNodes[i+o]; c = c && c.firstChild; c = c && c.firstChild;
|
||||
if (c) c.opacity = val;
|
||||
}
|
||||
};
|
||||
}
|
||||
else {
|
||||
useCssAnimations = vendor(s, 'animation');
|
||||
}
|
||||
}();
|
||||
|
||||
module.exports = Spinner;
|
||||