Showing
63 changed files
with
8101 additions
and
0 deletions
views/css/animate.css
0 → 100644
| 1 | +@charset "UTF-8"; | ||
| 2 | + | ||
| 3 | +/*! | ||
| 4 | + * animate.css -http://daneden.me/animate | ||
| 5 | + * Version - 3.5.0 | ||
| 6 | + * Licensed under the MIT license - http://opensource.org/licenses/MIT | ||
| 7 | + * | ||
| 8 | + * Copyright (c) 2016 Daniel Eden | ||
| 9 | + */ | ||
| 10 | + | ||
| 11 | +.animated { | ||
| 12 | + -webkit-animation-duration: 1s; | ||
| 13 | + animation-duration: 1s; | ||
| 14 | + -webkit-animation-fill-mode: both; | ||
| 15 | + animation-fill-mode: both; | ||
| 16 | +} | ||
| 17 | + | ||
| 18 | +.animated.infinite { | ||
| 19 | + -webkit-animation-iteration-count: infinite; | ||
| 20 | + animation-iteration-count: infinite; | ||
| 21 | +} | ||
| 22 | + | ||
| 23 | +.animated.hinge { | ||
| 24 | + -webkit-animation-duration: 2s; | ||
| 25 | + animation-duration: 2s; | ||
| 26 | +} | ||
| 27 | + | ||
| 28 | +.animated.flipOutX, | ||
| 29 | +.animated.flipOutY, | ||
| 30 | +.animated.bounceIn, | ||
| 31 | +.animated.bounceOut { | ||
| 32 | + -webkit-animation-duration: .75s; | ||
| 33 | + animation-duration: .75s; | ||
| 34 | +} | ||
| 35 | + | ||
| 36 | +@-webkit-keyframes bounce { | ||
| 37 | + from, 20%, 53%, 80%, to { | ||
| 38 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 39 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 40 | + -webkit-transform: translate3d(0,0,0); | ||
| 41 | + transform: translate3d(0,0,0); | ||
| 42 | + } | ||
| 43 | + | ||
| 44 | + 40%, 43% { | ||
| 45 | + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 46 | + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 47 | + -webkit-transform: translate3d(0, -30px, 0); | ||
| 48 | + transform: translate3d(0, -30px, 0); | ||
| 49 | + } | ||
| 50 | + | ||
| 51 | + 70% { | ||
| 52 | + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 53 | + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 54 | + -webkit-transform: translate3d(0, -15px, 0); | ||
| 55 | + transform: translate3d(0, -15px, 0); | ||
| 56 | + } | ||
| 57 | + | ||
| 58 | + 90% { | ||
| 59 | + -webkit-transform: translate3d(0,-4px,0); | ||
| 60 | + transform: translate3d(0,-4px,0); | ||
| 61 | + } | ||
| 62 | +} | ||
| 63 | + | ||
| 64 | +@keyframes bounce { | ||
| 65 | + from, 20%, 53%, 80%, to { | ||
| 66 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 67 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 68 | + -webkit-transform: translate3d(0,0,0); | ||
| 69 | + transform: translate3d(0,0,0); | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + 40%, 43% { | ||
| 73 | + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 74 | + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 75 | + -webkit-transform: translate3d(0, -30px, 0); | ||
| 76 | + transform: translate3d(0, -30px, 0); | ||
| 77 | + } | ||
| 78 | + | ||
| 79 | + 70% { | ||
| 80 | + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 81 | + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); | ||
| 82 | + -webkit-transform: translate3d(0, -15px, 0); | ||
| 83 | + transform: translate3d(0, -15px, 0); | ||
| 84 | + } | ||
| 85 | + | ||
| 86 | + 90% { | ||
| 87 | + -webkit-transform: translate3d(0,-4px,0); | ||
| 88 | + transform: translate3d(0,-4px,0); | ||
| 89 | + } | ||
| 90 | +} | ||
| 91 | + | ||
| 92 | +.bounce { | ||
| 93 | + -webkit-animation-name: bounce; | ||
| 94 | + animation-name: bounce; | ||
| 95 | + -webkit-transform-origin: center bottom; | ||
| 96 | + transform-origin: center bottom; | ||
| 97 | +} | ||
| 98 | + | ||
| 99 | +@-webkit-keyframes flash { | ||
| 100 | + from, 50%, to { | ||
| 101 | + opacity: 1; | ||
| 102 | + } | ||
| 103 | + | ||
| 104 | + 25%, 75% { | ||
| 105 | + opacity: 0; | ||
| 106 | + } | ||
| 107 | +} | ||
| 108 | + | ||
| 109 | +@keyframes flash { | ||
| 110 | + from, 50%, to { | ||
| 111 | + opacity: 1; | ||
| 112 | + } | ||
| 113 | + | ||
| 114 | + 25%, 75% { | ||
| 115 | + opacity: 0; | ||
| 116 | + } | ||
| 117 | +} | ||
| 118 | + | ||
| 119 | +.flash { | ||
| 120 | + -webkit-animation-name: flash; | ||
| 121 | + animation-name: flash; | ||
| 122 | +} | ||
| 123 | + | ||
| 124 | +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ | ||
| 125 | + | ||
| 126 | +@-webkit-keyframes pulse { | ||
| 127 | + from { | ||
| 128 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 129 | + transform: scale3d(1, 1, 1); | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + 50% { | ||
| 133 | + -webkit-transform: scale3d(1.05, 1.05, 1.05); | ||
| 134 | + transform: scale3d(1.05, 1.05, 1.05); | ||
| 135 | + } | ||
| 136 | + | ||
| 137 | + to { | ||
| 138 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 139 | + transform: scale3d(1, 1, 1); | ||
| 140 | + } | ||
| 141 | +} | ||
| 142 | + | ||
| 143 | +@keyframes pulse { | ||
| 144 | + from { | ||
| 145 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 146 | + transform: scale3d(1, 1, 1); | ||
| 147 | + } | ||
| 148 | + | ||
| 149 | + 50% { | ||
| 150 | + -webkit-transform: scale3d(1.05, 1.05, 1.05); | ||
| 151 | + transform: scale3d(1.05, 1.05, 1.05); | ||
| 152 | + } | ||
| 153 | + | ||
| 154 | + to { | ||
| 155 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 156 | + transform: scale3d(1, 1, 1); | ||
| 157 | + } | ||
| 158 | +} | ||
| 159 | + | ||
| 160 | +.pulse { | ||
| 161 | + -webkit-animation-name: pulse; | ||
| 162 | + animation-name: pulse; | ||
| 163 | +} | ||
| 164 | + | ||
| 165 | +@-webkit-keyframes rubberBand { | ||
| 166 | + from { | ||
| 167 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 168 | + transform: scale3d(1, 1, 1); | ||
| 169 | + } | ||
| 170 | + | ||
| 171 | + 30% { | ||
| 172 | + -webkit-transform: scale3d(1.25, 0.75, 1); | ||
| 173 | + transform: scale3d(1.25, 0.75, 1); | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + 40% { | ||
| 177 | + -webkit-transform: scale3d(0.75, 1.25, 1); | ||
| 178 | + transform: scale3d(0.75, 1.25, 1); | ||
| 179 | + } | ||
| 180 | + | ||
| 181 | + 50% { | ||
| 182 | + -webkit-transform: scale3d(1.15, 0.85, 1); | ||
| 183 | + transform: scale3d(1.15, 0.85, 1); | ||
| 184 | + } | ||
| 185 | + | ||
| 186 | + 65% { | ||
| 187 | + -webkit-transform: scale3d(.95, 1.05, 1); | ||
| 188 | + transform: scale3d(.95, 1.05, 1); | ||
| 189 | + } | ||
| 190 | + | ||
| 191 | + 75% { | ||
| 192 | + -webkit-transform: scale3d(1.05, .95, 1); | ||
| 193 | + transform: scale3d(1.05, .95, 1); | ||
| 194 | + } | ||
| 195 | + | ||
| 196 | + to { | ||
| 197 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 198 | + transform: scale3d(1, 1, 1); | ||
| 199 | + } | ||
| 200 | +} | ||
| 201 | + | ||
| 202 | +@keyframes rubberBand { | ||
| 203 | + from { | ||
| 204 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 205 | + transform: scale3d(1, 1, 1); | ||
| 206 | + } | ||
| 207 | + | ||
| 208 | + 30% { | ||
| 209 | + -webkit-transform: scale3d(1.25, 0.75, 1); | ||
| 210 | + transform: scale3d(1.25, 0.75, 1); | ||
| 211 | + } | ||
| 212 | + | ||
| 213 | + 40% { | ||
| 214 | + -webkit-transform: scale3d(0.75, 1.25, 1); | ||
| 215 | + transform: scale3d(0.75, 1.25, 1); | ||
| 216 | + } | ||
| 217 | + | ||
| 218 | + 50% { | ||
| 219 | + -webkit-transform: scale3d(1.15, 0.85, 1); | ||
| 220 | + transform: scale3d(1.15, 0.85, 1); | ||
| 221 | + } | ||
| 222 | + | ||
| 223 | + 65% { | ||
| 224 | + -webkit-transform: scale3d(.95, 1.05, 1); | ||
| 225 | + transform: scale3d(.95, 1.05, 1); | ||
| 226 | + } | ||
| 227 | + | ||
| 228 | + 75% { | ||
| 229 | + -webkit-transform: scale3d(1.05, .95, 1); | ||
| 230 | + transform: scale3d(1.05, .95, 1); | ||
| 231 | + } | ||
| 232 | + | ||
| 233 | + to { | ||
| 234 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 235 | + transform: scale3d(1, 1, 1); | ||
| 236 | + } | ||
| 237 | +} | ||
| 238 | + | ||
| 239 | +.rubberBand { | ||
| 240 | + -webkit-animation-name: rubberBand; | ||
| 241 | + animation-name: rubberBand; | ||
| 242 | +} | ||
| 243 | + | ||
| 244 | +@-webkit-keyframes shake { | ||
| 245 | + from, to { | ||
| 246 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 247 | + transform: translate3d(0, 0, 0); | ||
| 248 | + } | ||
| 249 | + | ||
| 250 | + 10%, 30%, 50%, 70%, 90% { | ||
| 251 | + -webkit-transform: translate3d(-10px, 0, 0); | ||
| 252 | + transform: translate3d(-10px, 0, 0); | ||
| 253 | + } | ||
| 254 | + | ||
| 255 | + 20%, 40%, 60%, 80% { | ||
| 256 | + -webkit-transform: translate3d(10px, 0, 0); | ||
| 257 | + transform: translate3d(10px, 0, 0); | ||
| 258 | + } | ||
| 259 | +} | ||
| 260 | + | ||
| 261 | +@keyframes shake { | ||
| 262 | + from, to { | ||
| 263 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 264 | + transform: translate3d(0, 0, 0); | ||
| 265 | + } | ||
| 266 | + | ||
| 267 | + 10%, 30%, 50%, 70%, 90% { | ||
| 268 | + -webkit-transform: translate3d(-10px, 0, 0); | ||
| 269 | + transform: translate3d(-10px, 0, 0); | ||
| 270 | + } | ||
| 271 | + | ||
| 272 | + 20%, 40%, 60%, 80% { | ||
| 273 | + -webkit-transform: translate3d(10px, 0, 0); | ||
| 274 | + transform: translate3d(10px, 0, 0); | ||
| 275 | + } | ||
| 276 | +} | ||
| 277 | + | ||
| 278 | +.shake { | ||
| 279 | + -webkit-animation-name: shake; | ||
| 280 | + animation-name: shake; | ||
| 281 | +} | ||
| 282 | + | ||
| 283 | +@-webkit-keyframes headShake { | ||
| 284 | + 0% { | ||
| 285 | + -webkit-transform: translateX(0); | ||
| 286 | + transform: translateX(0); | ||
| 287 | + } | ||
| 288 | + | ||
| 289 | + 6.5% { | ||
| 290 | + -webkit-transform: translateX(-6px) rotateY(-9deg); | ||
| 291 | + transform: translateX(-6px) rotateY(-9deg); | ||
| 292 | + } | ||
| 293 | + | ||
| 294 | + 18.5% { | ||
| 295 | + -webkit-transform: translateX(5px) rotateY(7deg); | ||
| 296 | + transform: translateX(5px) rotateY(7deg); | ||
| 297 | + } | ||
| 298 | + | ||
| 299 | + 31.5% { | ||
| 300 | + -webkit-transform: translateX(-3px) rotateY(-5deg); | ||
| 301 | + transform: translateX(-3px) rotateY(-5deg); | ||
| 302 | + } | ||
| 303 | + | ||
| 304 | + 43.5% { | ||
| 305 | + -webkit-transform: translateX(2px) rotateY(3deg); | ||
| 306 | + transform: translateX(2px) rotateY(3deg); | ||
| 307 | + } | ||
| 308 | + | ||
| 309 | + 50% { | ||
| 310 | + -webkit-transform: translateX(0); | ||
| 311 | + transform: translateX(0); | ||
| 312 | + } | ||
| 313 | +} | ||
| 314 | + | ||
| 315 | +@keyframes headShake { | ||
| 316 | + 0% { | ||
| 317 | + -webkit-transform: translateX(0); | ||
| 318 | + transform: translateX(0); | ||
| 319 | + } | ||
| 320 | + | ||
| 321 | + 6.5% { | ||
| 322 | + -webkit-transform: translateX(-6px) rotateY(-9deg); | ||
| 323 | + transform: translateX(-6px) rotateY(-9deg); | ||
| 324 | + } | ||
| 325 | + | ||
| 326 | + 18.5% { | ||
| 327 | + -webkit-transform: translateX(5px) rotateY(7deg); | ||
| 328 | + transform: translateX(5px) rotateY(7deg); | ||
| 329 | + } | ||
| 330 | + | ||
| 331 | + 31.5% { | ||
| 332 | + -webkit-transform: translateX(-3px) rotateY(-5deg); | ||
| 333 | + transform: translateX(-3px) rotateY(-5deg); | ||
| 334 | + } | ||
| 335 | + | ||
| 336 | + 43.5% { | ||
| 337 | + -webkit-transform: translateX(2px) rotateY(3deg); | ||
| 338 | + transform: translateX(2px) rotateY(3deg); | ||
| 339 | + } | ||
| 340 | + | ||
| 341 | + 50% { | ||
| 342 | + -webkit-transform: translateX(0); | ||
| 343 | + transform: translateX(0); | ||
| 344 | + } | ||
| 345 | +} | ||
| 346 | + | ||
| 347 | +.headShake { | ||
| 348 | + -webkit-animation-timing-function: ease-in-out; | ||
| 349 | + animation-timing-function: ease-in-out; | ||
| 350 | + -webkit-animation-name: headShake; | ||
| 351 | + animation-name: headShake; | ||
| 352 | +} | ||
| 353 | + | ||
| 354 | +@-webkit-keyframes swing { | ||
| 355 | + 20% { | ||
| 356 | + -webkit-transform: rotate3d(0, 0, 1, 15deg); | ||
| 357 | + transform: rotate3d(0, 0, 1, 15deg); | ||
| 358 | + } | ||
| 359 | + | ||
| 360 | + 40% { | ||
| 361 | + -webkit-transform: rotate3d(0, 0, 1, -10deg); | ||
| 362 | + transform: rotate3d(0, 0, 1, -10deg); | ||
| 363 | + } | ||
| 364 | + | ||
| 365 | + 60% { | ||
| 366 | + -webkit-transform: rotate3d(0, 0, 1, 5deg); | ||
| 367 | + transform: rotate3d(0, 0, 1, 5deg); | ||
| 368 | + } | ||
| 369 | + | ||
| 370 | + 80% { | ||
| 371 | + -webkit-transform: rotate3d(0, 0, 1, -5deg); | ||
| 372 | + transform: rotate3d(0, 0, 1, -5deg); | ||
| 373 | + } | ||
| 374 | + | ||
| 375 | + to { | ||
| 376 | + -webkit-transform: rotate3d(0, 0, 1, 0deg); | ||
| 377 | + transform: rotate3d(0, 0, 1, 0deg); | ||
| 378 | + } | ||
| 379 | +} | ||
| 380 | + | ||
| 381 | +@keyframes swing { | ||
| 382 | + 20% { | ||
| 383 | + -webkit-transform: rotate3d(0, 0, 1, 15deg); | ||
| 384 | + transform: rotate3d(0, 0, 1, 15deg); | ||
| 385 | + } | ||
| 386 | + | ||
| 387 | + 40% { | ||
| 388 | + -webkit-transform: rotate3d(0, 0, 1, -10deg); | ||
| 389 | + transform: rotate3d(0, 0, 1, -10deg); | ||
| 390 | + } | ||
| 391 | + | ||
| 392 | + 60% { | ||
| 393 | + -webkit-transform: rotate3d(0, 0, 1, 5deg); | ||
| 394 | + transform: rotate3d(0, 0, 1, 5deg); | ||
| 395 | + } | ||
| 396 | + | ||
| 397 | + 80% { | ||
| 398 | + -webkit-transform: rotate3d(0, 0, 1, -5deg); | ||
| 399 | + transform: rotate3d(0, 0, 1, -5deg); | ||
| 400 | + } | ||
| 401 | + | ||
| 402 | + to { | ||
| 403 | + -webkit-transform: rotate3d(0, 0, 1, 0deg); | ||
| 404 | + transform: rotate3d(0, 0, 1, 0deg); | ||
| 405 | + } | ||
| 406 | +} | ||
| 407 | + | ||
| 408 | +.swing { | ||
| 409 | + -webkit-transform-origin: top center; | ||
| 410 | + transform-origin: top center; | ||
| 411 | + -webkit-animation-name: swing; | ||
| 412 | + animation-name: swing; | ||
| 413 | +} | ||
| 414 | + | ||
| 415 | +@-webkit-keyframes tada { | ||
| 416 | + from { | ||
| 417 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 418 | + transform: scale3d(1, 1, 1); | ||
| 419 | + } | ||
| 420 | + | ||
| 421 | + 10%, 20% { | ||
| 422 | + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); | ||
| 423 | + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); | ||
| 424 | + } | ||
| 425 | + | ||
| 426 | + 30%, 50%, 70%, 90% { | ||
| 427 | + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); | ||
| 428 | + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); | ||
| 429 | + } | ||
| 430 | + | ||
| 431 | + 40%, 60%, 80% { | ||
| 432 | + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); | ||
| 433 | + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); | ||
| 434 | + } | ||
| 435 | + | ||
| 436 | + to { | ||
| 437 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 438 | + transform: scale3d(1, 1, 1); | ||
| 439 | + } | ||
| 440 | +} | ||
| 441 | + | ||
| 442 | +@keyframes tada { | ||
| 443 | + from { | ||
| 444 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 445 | + transform: scale3d(1, 1, 1); | ||
| 446 | + } | ||
| 447 | + | ||
| 448 | + 10%, 20% { | ||
| 449 | + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); | ||
| 450 | + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); | ||
| 451 | + } | ||
| 452 | + | ||
| 453 | + 30%, 50%, 70%, 90% { | ||
| 454 | + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); | ||
| 455 | + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); | ||
| 456 | + } | ||
| 457 | + | ||
| 458 | + 40%, 60%, 80% { | ||
| 459 | + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); | ||
| 460 | + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); | ||
| 461 | + } | ||
| 462 | + | ||
| 463 | + to { | ||
| 464 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 465 | + transform: scale3d(1, 1, 1); | ||
| 466 | + } | ||
| 467 | +} | ||
| 468 | + | ||
| 469 | +.tada { | ||
| 470 | + -webkit-animation-name: tada; | ||
| 471 | + animation-name: tada; | ||
| 472 | +} | ||
| 473 | + | ||
| 474 | +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ | ||
| 475 | + | ||
| 476 | +@-webkit-keyframes wobble { | ||
| 477 | + from { | ||
| 478 | + -webkit-transform: none; | ||
| 479 | + transform: none; | ||
| 480 | + } | ||
| 481 | + | ||
| 482 | + 15% { | ||
| 483 | + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); | ||
| 484 | + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); | ||
| 485 | + } | ||
| 486 | + | ||
| 487 | + 30% { | ||
| 488 | + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); | ||
| 489 | + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); | ||
| 490 | + } | ||
| 491 | + | ||
| 492 | + 45% { | ||
| 493 | + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); | ||
| 494 | + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); | ||
| 495 | + } | ||
| 496 | + | ||
| 497 | + 60% { | ||
| 498 | + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); | ||
| 499 | + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); | ||
| 500 | + } | ||
| 501 | + | ||
| 502 | + 75% { | ||
| 503 | + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); | ||
| 504 | + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); | ||
| 505 | + } | ||
| 506 | + | ||
| 507 | + to { | ||
| 508 | + -webkit-transform: none; | ||
| 509 | + transform: none; | ||
| 510 | + } | ||
| 511 | +} | ||
| 512 | + | ||
| 513 | +@keyframes wobble { | ||
| 514 | + from { | ||
| 515 | + -webkit-transform: none; | ||
| 516 | + transform: none; | ||
| 517 | + } | ||
| 518 | + | ||
| 519 | + 15% { | ||
| 520 | + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); | ||
| 521 | + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); | ||
| 522 | + } | ||
| 523 | + | ||
| 524 | + 30% { | ||
| 525 | + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); | ||
| 526 | + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); | ||
| 527 | + } | ||
| 528 | + | ||
| 529 | + 45% { | ||
| 530 | + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); | ||
| 531 | + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); | ||
| 532 | + } | ||
| 533 | + | ||
| 534 | + 60% { | ||
| 535 | + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); | ||
| 536 | + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); | ||
| 537 | + } | ||
| 538 | + | ||
| 539 | + 75% { | ||
| 540 | + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); | ||
| 541 | + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); | ||
| 542 | + } | ||
| 543 | + | ||
| 544 | + to { | ||
| 545 | + -webkit-transform: none; | ||
| 546 | + transform: none; | ||
| 547 | + } | ||
| 548 | +} | ||
| 549 | + | ||
| 550 | +.wobble { | ||
| 551 | + -webkit-animation-name: wobble; | ||
| 552 | + animation-name: wobble; | ||
| 553 | +} | ||
| 554 | + | ||
| 555 | +@-webkit-keyframes jello { | ||
| 556 | + from, 11.1%, to { | ||
| 557 | + -webkit-transform: none; | ||
| 558 | + transform: none; | ||
| 559 | + } | ||
| 560 | + | ||
| 561 | + 22.2% { | ||
| 562 | + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); | ||
| 563 | + transform: skewX(-12.5deg) skewY(-12.5deg); | ||
| 564 | + } | ||
| 565 | + | ||
| 566 | + 33.3% { | ||
| 567 | + -webkit-transform: skewX(6.25deg) skewY(6.25deg); | ||
| 568 | + transform: skewX(6.25deg) skewY(6.25deg); | ||
| 569 | + } | ||
| 570 | + | ||
| 571 | + 44.4% { | ||
| 572 | + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); | ||
| 573 | + transform: skewX(-3.125deg) skewY(-3.125deg); | ||
| 574 | + } | ||
| 575 | + | ||
| 576 | + 55.5% { | ||
| 577 | + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); | ||
| 578 | + transform: skewX(1.5625deg) skewY(1.5625deg); | ||
| 579 | + } | ||
| 580 | + | ||
| 581 | + 66.6% { | ||
| 582 | + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); | ||
| 583 | + transform: skewX(-0.78125deg) skewY(-0.78125deg); | ||
| 584 | + } | ||
| 585 | + | ||
| 586 | + 77.7% { | ||
| 587 | + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); | ||
| 588 | + transform: skewX(0.390625deg) skewY(0.390625deg); | ||
| 589 | + } | ||
| 590 | + | ||
| 591 | + 88.8% { | ||
| 592 | + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); | ||
| 593 | + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); | ||
| 594 | + } | ||
| 595 | +} | ||
| 596 | + | ||
| 597 | +@keyframes jello { | ||
| 598 | + from, 11.1%, to { | ||
| 599 | + -webkit-transform: none; | ||
| 600 | + transform: none; | ||
| 601 | + } | ||
| 602 | + | ||
| 603 | + 22.2% { | ||
| 604 | + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); | ||
| 605 | + transform: skewX(-12.5deg) skewY(-12.5deg); | ||
| 606 | + } | ||
| 607 | + | ||
| 608 | + 33.3% { | ||
| 609 | + -webkit-transform: skewX(6.25deg) skewY(6.25deg); | ||
| 610 | + transform: skewX(6.25deg) skewY(6.25deg); | ||
| 611 | + } | ||
| 612 | + | ||
| 613 | + 44.4% { | ||
| 614 | + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); | ||
| 615 | + transform: skewX(-3.125deg) skewY(-3.125deg); | ||
| 616 | + } | ||
| 617 | + | ||
| 618 | + 55.5% { | ||
| 619 | + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); | ||
| 620 | + transform: skewX(1.5625deg) skewY(1.5625deg); | ||
| 621 | + } | ||
| 622 | + | ||
| 623 | + 66.6% { | ||
| 624 | + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); | ||
| 625 | + transform: skewX(-0.78125deg) skewY(-0.78125deg); | ||
| 626 | + } | ||
| 627 | + | ||
| 628 | + 77.7% { | ||
| 629 | + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); | ||
| 630 | + transform: skewX(0.390625deg) skewY(0.390625deg); | ||
| 631 | + } | ||
| 632 | + | ||
| 633 | + 88.8% { | ||
| 634 | + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); | ||
| 635 | + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); | ||
| 636 | + } | ||
| 637 | +} | ||
| 638 | + | ||
| 639 | +.jello { | ||
| 640 | + -webkit-animation-name: jello; | ||
| 641 | + animation-name: jello; | ||
| 642 | + -webkit-transform-origin: center; | ||
| 643 | + transform-origin: center; | ||
| 644 | +} | ||
| 645 | + | ||
| 646 | +@-webkit-keyframes bounceIn { | ||
| 647 | + from, 20%, 40%, 60%, 80%, to { | ||
| 648 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 649 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 650 | + } | ||
| 651 | + | ||
| 652 | + 0% { | ||
| 653 | + opacity: 0; | ||
| 654 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 655 | + transform: scale3d(.3, .3, .3); | ||
| 656 | + } | ||
| 657 | + | ||
| 658 | + 20% { | ||
| 659 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
| 660 | + transform: scale3d(1.1, 1.1, 1.1); | ||
| 661 | + } | ||
| 662 | + | ||
| 663 | + 40% { | ||
| 664 | + -webkit-transform: scale3d(.9, .9, .9); | ||
| 665 | + transform: scale3d(.9, .9, .9); | ||
| 666 | + } | ||
| 667 | + | ||
| 668 | + 60% { | ||
| 669 | + opacity: 1; | ||
| 670 | + -webkit-transform: scale3d(1.03, 1.03, 1.03); | ||
| 671 | + transform: scale3d(1.03, 1.03, 1.03); | ||
| 672 | + } | ||
| 673 | + | ||
| 674 | + 80% { | ||
| 675 | + -webkit-transform: scale3d(.97, .97, .97); | ||
| 676 | + transform: scale3d(.97, .97, .97); | ||
| 677 | + } | ||
| 678 | + | ||
| 679 | + to { | ||
| 680 | + opacity: 1; | ||
| 681 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 682 | + transform: scale3d(1, 1, 1); | ||
| 683 | + } | ||
| 684 | +} | ||
| 685 | + | ||
| 686 | +@keyframes bounceIn { | ||
| 687 | + from, 20%, 40%, 60%, 80%, to { | ||
| 688 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 689 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 690 | + } | ||
| 691 | + | ||
| 692 | + 0% { | ||
| 693 | + opacity: 0; | ||
| 694 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 695 | + transform: scale3d(.3, .3, .3); | ||
| 696 | + } | ||
| 697 | + | ||
| 698 | + 20% { | ||
| 699 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
| 700 | + transform: scale3d(1.1, 1.1, 1.1); | ||
| 701 | + } | ||
| 702 | + | ||
| 703 | + 40% { | ||
| 704 | + -webkit-transform: scale3d(.9, .9, .9); | ||
| 705 | + transform: scale3d(.9, .9, .9); | ||
| 706 | + } | ||
| 707 | + | ||
| 708 | + 60% { | ||
| 709 | + opacity: 1; | ||
| 710 | + -webkit-transform: scale3d(1.03, 1.03, 1.03); | ||
| 711 | + transform: scale3d(1.03, 1.03, 1.03); | ||
| 712 | + } | ||
| 713 | + | ||
| 714 | + 80% { | ||
| 715 | + -webkit-transform: scale3d(.97, .97, .97); | ||
| 716 | + transform: scale3d(.97, .97, .97); | ||
| 717 | + } | ||
| 718 | + | ||
| 719 | + to { | ||
| 720 | + opacity: 1; | ||
| 721 | + -webkit-transform: scale3d(1, 1, 1); | ||
| 722 | + transform: scale3d(1, 1, 1); | ||
| 723 | + } | ||
| 724 | +} | ||
| 725 | + | ||
| 726 | +.bounceIn { | ||
| 727 | + -webkit-animation-name: bounceIn; | ||
| 728 | + animation-name: bounceIn; | ||
| 729 | +} | ||
| 730 | + | ||
| 731 | +@-webkit-keyframes bounceInDown { | ||
| 732 | + from, 60%, 75%, 90%, to { | ||
| 733 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 734 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 735 | + } | ||
| 736 | + | ||
| 737 | + 0% { | ||
| 738 | + opacity: 0; | ||
| 739 | + -webkit-transform: translate3d(0, -3000px, 0); | ||
| 740 | + transform: translate3d(0, -3000px, 0); | ||
| 741 | + } | ||
| 742 | + | ||
| 743 | + 60% { | ||
| 744 | + opacity: 1; | ||
| 745 | + -webkit-transform: translate3d(0, 25px, 0); | ||
| 746 | + transform: translate3d(0, 25px, 0); | ||
| 747 | + } | ||
| 748 | + | ||
| 749 | + 75% { | ||
| 750 | + -webkit-transform: translate3d(0, -10px, 0); | ||
| 751 | + transform: translate3d(0, -10px, 0); | ||
| 752 | + } | ||
| 753 | + | ||
| 754 | + 90% { | ||
| 755 | + -webkit-transform: translate3d(0, 5px, 0); | ||
| 756 | + transform: translate3d(0, 5px, 0); | ||
| 757 | + } | ||
| 758 | + | ||
| 759 | + to { | ||
| 760 | + -webkit-transform: none; | ||
| 761 | + transform: none; | ||
| 762 | + } | ||
| 763 | +} | ||
| 764 | + | ||
| 765 | +@keyframes bounceInDown { | ||
| 766 | + from, 60%, 75%, 90%, to { | ||
| 767 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 768 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 769 | + } | ||
| 770 | + | ||
| 771 | + 0% { | ||
| 772 | + opacity: 0; | ||
| 773 | + -webkit-transform: translate3d(0, -3000px, 0); | ||
| 774 | + transform: translate3d(0, -3000px, 0); | ||
| 775 | + } | ||
| 776 | + | ||
| 777 | + 60% { | ||
| 778 | + opacity: 1; | ||
| 779 | + -webkit-transform: translate3d(0, 25px, 0); | ||
| 780 | + transform: translate3d(0, 25px, 0); | ||
| 781 | + } | ||
| 782 | + | ||
| 783 | + 75% { | ||
| 784 | + -webkit-transform: translate3d(0, -10px, 0); | ||
| 785 | + transform: translate3d(0, -10px, 0); | ||
| 786 | + } | ||
| 787 | + | ||
| 788 | + 90% { | ||
| 789 | + -webkit-transform: translate3d(0, 5px, 0); | ||
| 790 | + transform: translate3d(0, 5px, 0); | ||
| 791 | + } | ||
| 792 | + | ||
| 793 | + to { | ||
| 794 | + -webkit-transform: none; | ||
| 795 | + transform: none; | ||
| 796 | + } | ||
| 797 | +} | ||
| 798 | + | ||
| 799 | +.bounceInDown { | ||
| 800 | + -webkit-animation-name: bounceInDown; | ||
| 801 | + animation-name: bounceInDown; | ||
| 802 | +} | ||
| 803 | + | ||
| 804 | +@-webkit-keyframes bounceInLeft { | ||
| 805 | + from, 60%, 75%, 90%, to { | ||
| 806 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 807 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 808 | + } | ||
| 809 | + | ||
| 810 | + 0% { | ||
| 811 | + opacity: 0; | ||
| 812 | + -webkit-transform: translate3d(-3000px, 0, 0); | ||
| 813 | + transform: translate3d(-3000px, 0, 0); | ||
| 814 | + } | ||
| 815 | + | ||
| 816 | + 60% { | ||
| 817 | + opacity: 1; | ||
| 818 | + -webkit-transform: translate3d(25px, 0, 0); | ||
| 819 | + transform: translate3d(25px, 0, 0); | ||
| 820 | + } | ||
| 821 | + | ||
| 822 | + 75% { | ||
| 823 | + -webkit-transform: translate3d(-10px, 0, 0); | ||
| 824 | + transform: translate3d(-10px, 0, 0); | ||
| 825 | + } | ||
| 826 | + | ||
| 827 | + 90% { | ||
| 828 | + -webkit-transform: translate3d(5px, 0, 0); | ||
| 829 | + transform: translate3d(5px, 0, 0); | ||
| 830 | + } | ||
| 831 | + | ||
| 832 | + to { | ||
| 833 | + -webkit-transform: none; | ||
| 834 | + transform: none; | ||
| 835 | + } | ||
| 836 | +} | ||
| 837 | + | ||
| 838 | +@keyframes bounceInLeft { | ||
| 839 | + from, 60%, 75%, 90%, to { | ||
| 840 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 841 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 842 | + } | ||
| 843 | + | ||
| 844 | + 0% { | ||
| 845 | + opacity: 0; | ||
| 846 | + -webkit-transform: translate3d(-3000px, 0, 0); | ||
| 847 | + transform: translate3d(-3000px, 0, 0); | ||
| 848 | + } | ||
| 849 | + | ||
| 850 | + 60% { | ||
| 851 | + opacity: 1; | ||
| 852 | + -webkit-transform: translate3d(25px, 0, 0); | ||
| 853 | + transform: translate3d(25px, 0, 0); | ||
| 854 | + } | ||
| 855 | + | ||
| 856 | + 75% { | ||
| 857 | + -webkit-transform: translate3d(-10px, 0, 0); | ||
| 858 | + transform: translate3d(-10px, 0, 0); | ||
| 859 | + } | ||
| 860 | + | ||
| 861 | + 90% { | ||
| 862 | + -webkit-transform: translate3d(5px, 0, 0); | ||
| 863 | + transform: translate3d(5px, 0, 0); | ||
| 864 | + } | ||
| 865 | + | ||
| 866 | + to { | ||
| 867 | + -webkit-transform: none; | ||
| 868 | + transform: none; | ||
| 869 | + } | ||
| 870 | +} | ||
| 871 | + | ||
| 872 | +.bounceInLeft { | ||
| 873 | + -webkit-animation-name: bounceInLeft; | ||
| 874 | + animation-name: bounceInLeft; | ||
| 875 | +} | ||
| 876 | + | ||
| 877 | +@-webkit-keyframes bounceInRight { | ||
| 878 | + from, 60%, 75%, 90%, to { | ||
| 879 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 880 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 881 | + } | ||
| 882 | + | ||
| 883 | + from { | ||
| 884 | + opacity: 0; | ||
| 885 | + -webkit-transform: translate3d(3000px, 0, 0); | ||
| 886 | + transform: translate3d(3000px, 0, 0); | ||
| 887 | + } | ||
| 888 | + | ||
| 889 | + 60% { | ||
| 890 | + opacity: 1; | ||
| 891 | + -webkit-transform: translate3d(-25px, 0, 0); | ||
| 892 | + transform: translate3d(-25px, 0, 0); | ||
| 893 | + } | ||
| 894 | + | ||
| 895 | + 75% { | ||
| 896 | + -webkit-transform: translate3d(10px, 0, 0); | ||
| 897 | + transform: translate3d(10px, 0, 0); | ||
| 898 | + } | ||
| 899 | + | ||
| 900 | + 90% { | ||
| 901 | + -webkit-transform: translate3d(-5px, 0, 0); | ||
| 902 | + transform: translate3d(-5px, 0, 0); | ||
| 903 | + } | ||
| 904 | + | ||
| 905 | + to { | ||
| 906 | + -webkit-transform: none; | ||
| 907 | + transform: none; | ||
| 908 | + } | ||
| 909 | +} | ||
| 910 | + | ||
| 911 | +@keyframes bounceInRight { | ||
| 912 | + from, 60%, 75%, 90%, to { | ||
| 913 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 914 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 915 | + } | ||
| 916 | + | ||
| 917 | + from { | ||
| 918 | + opacity: 0; | ||
| 919 | + -webkit-transform: translate3d(3000px, 0, 0); | ||
| 920 | + transform: translate3d(3000px, 0, 0); | ||
| 921 | + } | ||
| 922 | + | ||
| 923 | + 60% { | ||
| 924 | + opacity: 1; | ||
| 925 | + -webkit-transform: translate3d(-25px, 0, 0); | ||
| 926 | + transform: translate3d(-25px, 0, 0); | ||
| 927 | + } | ||
| 928 | + | ||
| 929 | + 75% { | ||
| 930 | + -webkit-transform: translate3d(10px, 0, 0); | ||
| 931 | + transform: translate3d(10px, 0, 0); | ||
| 932 | + } | ||
| 933 | + | ||
| 934 | + 90% { | ||
| 935 | + -webkit-transform: translate3d(-5px, 0, 0); | ||
| 936 | + transform: translate3d(-5px, 0, 0); | ||
| 937 | + } | ||
| 938 | + | ||
| 939 | + to { | ||
| 940 | + -webkit-transform: none; | ||
| 941 | + transform: none; | ||
| 942 | + } | ||
| 943 | +} | ||
| 944 | + | ||
| 945 | +.bounceInRight { | ||
| 946 | + -webkit-animation-name: bounceInRight; | ||
| 947 | + animation-name: bounceInRight; | ||
| 948 | +} | ||
| 949 | + | ||
| 950 | +@-webkit-keyframes bounceInUp { | ||
| 951 | + from, 60%, 75%, 90%, to { | ||
| 952 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 953 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 954 | + } | ||
| 955 | + | ||
| 956 | + from { | ||
| 957 | + opacity: 0; | ||
| 958 | + -webkit-transform: translate3d(0, 3000px, 0); | ||
| 959 | + transform: translate3d(0, 3000px, 0); | ||
| 960 | + } | ||
| 961 | + | ||
| 962 | + 60% { | ||
| 963 | + opacity: 1; | ||
| 964 | + -webkit-transform: translate3d(0, -20px, 0); | ||
| 965 | + transform: translate3d(0, -20px, 0); | ||
| 966 | + } | ||
| 967 | + | ||
| 968 | + 75% { | ||
| 969 | + -webkit-transform: translate3d(0, 10px, 0); | ||
| 970 | + transform: translate3d(0, 10px, 0); | ||
| 971 | + } | ||
| 972 | + | ||
| 973 | + 90% { | ||
| 974 | + -webkit-transform: translate3d(0, -5px, 0); | ||
| 975 | + transform: translate3d(0, -5px, 0); | ||
| 976 | + } | ||
| 977 | + | ||
| 978 | + to { | ||
| 979 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 980 | + transform: translate3d(0, 0, 0); | ||
| 981 | + } | ||
| 982 | +} | ||
| 983 | + | ||
| 984 | +@keyframes bounceInUp { | ||
| 985 | + from, 60%, 75%, 90%, to { | ||
| 986 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 987 | + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | ||
| 988 | + } | ||
| 989 | + | ||
| 990 | + from { | ||
| 991 | + opacity: 0; | ||
| 992 | + -webkit-transform: translate3d(0, 3000px, 0); | ||
| 993 | + transform: translate3d(0, 3000px, 0); | ||
| 994 | + } | ||
| 995 | + | ||
| 996 | + 60% { | ||
| 997 | + opacity: 1; | ||
| 998 | + -webkit-transform: translate3d(0, -20px, 0); | ||
| 999 | + transform: translate3d(0, -20px, 0); | ||
| 1000 | + } | ||
| 1001 | + | ||
| 1002 | + 75% { | ||
| 1003 | + -webkit-transform: translate3d(0, 10px, 0); | ||
| 1004 | + transform: translate3d(0, 10px, 0); | ||
| 1005 | + } | ||
| 1006 | + | ||
| 1007 | + 90% { | ||
| 1008 | + -webkit-transform: translate3d(0, -5px, 0); | ||
| 1009 | + transform: translate3d(0, -5px, 0); | ||
| 1010 | + } | ||
| 1011 | + | ||
| 1012 | + to { | ||
| 1013 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 1014 | + transform: translate3d(0, 0, 0); | ||
| 1015 | + } | ||
| 1016 | +} | ||
| 1017 | + | ||
| 1018 | +.bounceInUp { | ||
| 1019 | + -webkit-animation-name: bounceInUp; | ||
| 1020 | + animation-name: bounceInUp; | ||
| 1021 | +} | ||
| 1022 | + | ||
| 1023 | +@-webkit-keyframes bounceOut { | ||
| 1024 | + 20% { | ||
| 1025 | + -webkit-transform: scale3d(.9, .9, .9); | ||
| 1026 | + transform: scale3d(.9, .9, .9); | ||
| 1027 | + } | ||
| 1028 | + | ||
| 1029 | + 50%, 55% { | ||
| 1030 | + opacity: 1; | ||
| 1031 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
| 1032 | + transform: scale3d(1.1, 1.1, 1.1); | ||
| 1033 | + } | ||
| 1034 | + | ||
| 1035 | + to { | ||
| 1036 | + opacity: 0; | ||
| 1037 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 1038 | + transform: scale3d(.3, .3, .3); | ||
| 1039 | + } | ||
| 1040 | +} | ||
| 1041 | + | ||
| 1042 | +@keyframes bounceOut { | ||
| 1043 | + 20% { | ||
| 1044 | + -webkit-transform: scale3d(.9, .9, .9); | ||
| 1045 | + transform: scale3d(.9, .9, .9); | ||
| 1046 | + } | ||
| 1047 | + | ||
| 1048 | + 50%, 55% { | ||
| 1049 | + opacity: 1; | ||
| 1050 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
| 1051 | + transform: scale3d(1.1, 1.1, 1.1); | ||
| 1052 | + } | ||
| 1053 | + | ||
| 1054 | + to { | ||
| 1055 | + opacity: 0; | ||
| 1056 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 1057 | + transform: scale3d(.3, .3, .3); | ||
| 1058 | + } | ||
| 1059 | +} | ||
| 1060 | + | ||
| 1061 | +.bounceOut { | ||
| 1062 | + -webkit-animation-name: bounceOut; | ||
| 1063 | + animation-name: bounceOut; | ||
| 1064 | +} | ||
| 1065 | + | ||
| 1066 | +@-webkit-keyframes bounceOutDown { | ||
| 1067 | + 20% { | ||
| 1068 | + -webkit-transform: translate3d(0, 10px, 0); | ||
| 1069 | + transform: translate3d(0, 10px, 0); | ||
| 1070 | + } | ||
| 1071 | + | ||
| 1072 | + 40%, 45% { | ||
| 1073 | + opacity: 1; | ||
| 1074 | + -webkit-transform: translate3d(0, -20px, 0); | ||
| 1075 | + transform: translate3d(0, -20px, 0); | ||
| 1076 | + } | ||
| 1077 | + | ||
| 1078 | + to { | ||
| 1079 | + opacity: 0; | ||
| 1080 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1081 | + transform: translate3d(0, 2000px, 0); | ||
| 1082 | + } | ||
| 1083 | +} | ||
| 1084 | + | ||
| 1085 | +@keyframes bounceOutDown { | ||
| 1086 | + 20% { | ||
| 1087 | + -webkit-transform: translate3d(0, 10px, 0); | ||
| 1088 | + transform: translate3d(0, 10px, 0); | ||
| 1089 | + } | ||
| 1090 | + | ||
| 1091 | + 40%, 45% { | ||
| 1092 | + opacity: 1; | ||
| 1093 | + -webkit-transform: translate3d(0, -20px, 0); | ||
| 1094 | + transform: translate3d(0, -20px, 0); | ||
| 1095 | + } | ||
| 1096 | + | ||
| 1097 | + to { | ||
| 1098 | + opacity: 0; | ||
| 1099 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1100 | + transform: translate3d(0, 2000px, 0); | ||
| 1101 | + } | ||
| 1102 | +} | ||
| 1103 | + | ||
| 1104 | +.bounceOutDown { | ||
| 1105 | + -webkit-animation-name: bounceOutDown; | ||
| 1106 | + animation-name: bounceOutDown; | ||
| 1107 | +} | ||
| 1108 | + | ||
| 1109 | +@-webkit-keyframes bounceOutLeft { | ||
| 1110 | + 20% { | ||
| 1111 | + opacity: 1; | ||
| 1112 | + -webkit-transform: translate3d(20px, 0, 0); | ||
| 1113 | + transform: translate3d(20px, 0, 0); | ||
| 1114 | + } | ||
| 1115 | + | ||
| 1116 | + to { | ||
| 1117 | + opacity: 0; | ||
| 1118 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1119 | + transform: translate3d(-2000px, 0, 0); | ||
| 1120 | + } | ||
| 1121 | +} | ||
| 1122 | + | ||
| 1123 | +@keyframes bounceOutLeft { | ||
| 1124 | + 20% { | ||
| 1125 | + opacity: 1; | ||
| 1126 | + -webkit-transform: translate3d(20px, 0, 0); | ||
| 1127 | + transform: translate3d(20px, 0, 0); | ||
| 1128 | + } | ||
| 1129 | + | ||
| 1130 | + to { | ||
| 1131 | + opacity: 0; | ||
| 1132 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1133 | + transform: translate3d(-2000px, 0, 0); | ||
| 1134 | + } | ||
| 1135 | +} | ||
| 1136 | + | ||
| 1137 | +.bounceOutLeft { | ||
| 1138 | + -webkit-animation-name: bounceOutLeft; | ||
| 1139 | + animation-name: bounceOutLeft; | ||
| 1140 | +} | ||
| 1141 | + | ||
| 1142 | +@-webkit-keyframes bounceOutRight { | ||
| 1143 | + 20% { | ||
| 1144 | + opacity: 1; | ||
| 1145 | + -webkit-transform: translate3d(-20px, 0, 0); | ||
| 1146 | + transform: translate3d(-20px, 0, 0); | ||
| 1147 | + } | ||
| 1148 | + | ||
| 1149 | + to { | ||
| 1150 | + opacity: 0; | ||
| 1151 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1152 | + transform: translate3d(2000px, 0, 0); | ||
| 1153 | + } | ||
| 1154 | +} | ||
| 1155 | + | ||
| 1156 | +@keyframes bounceOutRight { | ||
| 1157 | + 20% { | ||
| 1158 | + opacity: 1; | ||
| 1159 | + -webkit-transform: translate3d(-20px, 0, 0); | ||
| 1160 | + transform: translate3d(-20px, 0, 0); | ||
| 1161 | + } | ||
| 1162 | + | ||
| 1163 | + to { | ||
| 1164 | + opacity: 0; | ||
| 1165 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1166 | + transform: translate3d(2000px, 0, 0); | ||
| 1167 | + } | ||
| 1168 | +} | ||
| 1169 | + | ||
| 1170 | +.bounceOutRight { | ||
| 1171 | + -webkit-animation-name: bounceOutRight; | ||
| 1172 | + animation-name: bounceOutRight; | ||
| 1173 | +} | ||
| 1174 | + | ||
| 1175 | +@-webkit-keyframes bounceOutUp { | ||
| 1176 | + 20% { | ||
| 1177 | + -webkit-transform: translate3d(0, -10px, 0); | ||
| 1178 | + transform: translate3d(0, -10px, 0); | ||
| 1179 | + } | ||
| 1180 | + | ||
| 1181 | + 40%, 45% { | ||
| 1182 | + opacity: 1; | ||
| 1183 | + -webkit-transform: translate3d(0, 20px, 0); | ||
| 1184 | + transform: translate3d(0, 20px, 0); | ||
| 1185 | + } | ||
| 1186 | + | ||
| 1187 | + to { | ||
| 1188 | + opacity: 0; | ||
| 1189 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1190 | + transform: translate3d(0, -2000px, 0); | ||
| 1191 | + } | ||
| 1192 | +} | ||
| 1193 | + | ||
| 1194 | +@keyframes bounceOutUp { | ||
| 1195 | + 20% { | ||
| 1196 | + -webkit-transform: translate3d(0, -10px, 0); | ||
| 1197 | + transform: translate3d(0, -10px, 0); | ||
| 1198 | + } | ||
| 1199 | + | ||
| 1200 | + 40%, 45% { | ||
| 1201 | + opacity: 1; | ||
| 1202 | + -webkit-transform: translate3d(0, 20px, 0); | ||
| 1203 | + transform: translate3d(0, 20px, 0); | ||
| 1204 | + } | ||
| 1205 | + | ||
| 1206 | + to { | ||
| 1207 | + opacity: 0; | ||
| 1208 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1209 | + transform: translate3d(0, -2000px, 0); | ||
| 1210 | + } | ||
| 1211 | +} | ||
| 1212 | + | ||
| 1213 | +.bounceOutUp { | ||
| 1214 | + -webkit-animation-name: bounceOutUp; | ||
| 1215 | + animation-name: bounceOutUp; | ||
| 1216 | +} | ||
| 1217 | + | ||
| 1218 | +@-webkit-keyframes fadeIn { | ||
| 1219 | + from { | ||
| 1220 | + opacity: 0; | ||
| 1221 | + } | ||
| 1222 | + | ||
| 1223 | + to { | ||
| 1224 | + opacity: 1; | ||
| 1225 | + } | ||
| 1226 | +} | ||
| 1227 | + | ||
| 1228 | +@keyframes fadeIn { | ||
| 1229 | + from { | ||
| 1230 | + opacity: 0; | ||
| 1231 | + } | ||
| 1232 | + | ||
| 1233 | + to { | ||
| 1234 | + opacity: 1; | ||
| 1235 | + } | ||
| 1236 | +} | ||
| 1237 | + | ||
| 1238 | +.fadeIn { | ||
| 1239 | + -webkit-animation-name: fadeIn; | ||
| 1240 | + animation-name: fadeIn; | ||
| 1241 | +} | ||
| 1242 | + | ||
| 1243 | +@-webkit-keyframes fadeInDown { | ||
| 1244 | + from { | ||
| 1245 | + opacity: 0; | ||
| 1246 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 1247 | + transform: translate3d(0, -100%, 0); | ||
| 1248 | + } | ||
| 1249 | + | ||
| 1250 | + to { | ||
| 1251 | + opacity: 1; | ||
| 1252 | + -webkit-transform: none; | ||
| 1253 | + transform: none; | ||
| 1254 | + } | ||
| 1255 | +} | ||
| 1256 | + | ||
| 1257 | +@keyframes fadeInDown { | ||
| 1258 | + from { | ||
| 1259 | + opacity: 0; | ||
| 1260 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 1261 | + transform: translate3d(0, -100%, 0); | ||
| 1262 | + } | ||
| 1263 | + | ||
| 1264 | + to { | ||
| 1265 | + opacity: 1; | ||
| 1266 | + -webkit-transform: none; | ||
| 1267 | + transform: none; | ||
| 1268 | + } | ||
| 1269 | +} | ||
| 1270 | + | ||
| 1271 | +.fadeInDown { | ||
| 1272 | + -webkit-animation-name: fadeInDown; | ||
| 1273 | + animation-name: fadeInDown; | ||
| 1274 | +} | ||
| 1275 | + | ||
| 1276 | +@-webkit-keyframes fadeInDownBig { | ||
| 1277 | + from { | ||
| 1278 | + opacity: 0; | ||
| 1279 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1280 | + transform: translate3d(0, -2000px, 0); | ||
| 1281 | + } | ||
| 1282 | + | ||
| 1283 | + to { | ||
| 1284 | + opacity: 1; | ||
| 1285 | + -webkit-transform: none; | ||
| 1286 | + transform: none; | ||
| 1287 | + } | ||
| 1288 | +} | ||
| 1289 | + | ||
| 1290 | +@keyframes fadeInDownBig { | ||
| 1291 | + from { | ||
| 1292 | + opacity: 0; | ||
| 1293 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1294 | + transform: translate3d(0, -2000px, 0); | ||
| 1295 | + } | ||
| 1296 | + | ||
| 1297 | + to { | ||
| 1298 | + opacity: 1; | ||
| 1299 | + -webkit-transform: none; | ||
| 1300 | + transform: none; | ||
| 1301 | + } | ||
| 1302 | +} | ||
| 1303 | + | ||
| 1304 | +.fadeInDownBig { | ||
| 1305 | + -webkit-animation-name: fadeInDownBig; | ||
| 1306 | + animation-name: fadeInDownBig; | ||
| 1307 | +} | ||
| 1308 | + | ||
| 1309 | +@-webkit-keyframes fadeInLeft { | ||
| 1310 | + from { | ||
| 1311 | + opacity: 0; | ||
| 1312 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 1313 | + transform: translate3d(-100%, 0, 0); | ||
| 1314 | + } | ||
| 1315 | + | ||
| 1316 | + to { | ||
| 1317 | + opacity: 1; | ||
| 1318 | + -webkit-transform: none; | ||
| 1319 | + transform: none; | ||
| 1320 | + } | ||
| 1321 | +} | ||
| 1322 | + | ||
| 1323 | +@keyframes fadeInLeft { | ||
| 1324 | + from { | ||
| 1325 | + opacity: 0; | ||
| 1326 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 1327 | + transform: translate3d(-100%, 0, 0); | ||
| 1328 | + } | ||
| 1329 | + | ||
| 1330 | + to { | ||
| 1331 | + opacity: 1; | ||
| 1332 | + -webkit-transform: none; | ||
| 1333 | + transform: none; | ||
| 1334 | + } | ||
| 1335 | +} | ||
| 1336 | + | ||
| 1337 | +.fadeInLeft { | ||
| 1338 | + -webkit-animation-name: fadeInLeft; | ||
| 1339 | + animation-name: fadeInLeft; | ||
| 1340 | +} | ||
| 1341 | + | ||
| 1342 | +@-webkit-keyframes fadeInLeftBig { | ||
| 1343 | + from { | ||
| 1344 | + opacity: 0; | ||
| 1345 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1346 | + transform: translate3d(-2000px, 0, 0); | ||
| 1347 | + } | ||
| 1348 | + | ||
| 1349 | + to { | ||
| 1350 | + opacity: 1; | ||
| 1351 | + -webkit-transform: none; | ||
| 1352 | + transform: none; | ||
| 1353 | + } | ||
| 1354 | +} | ||
| 1355 | + | ||
| 1356 | +@keyframes fadeInLeftBig { | ||
| 1357 | + from { | ||
| 1358 | + opacity: 0; | ||
| 1359 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1360 | + transform: translate3d(-2000px, 0, 0); | ||
| 1361 | + } | ||
| 1362 | + | ||
| 1363 | + to { | ||
| 1364 | + opacity: 1; | ||
| 1365 | + -webkit-transform: none; | ||
| 1366 | + transform: none; | ||
| 1367 | + } | ||
| 1368 | +} | ||
| 1369 | + | ||
| 1370 | +.fadeInLeftBig { | ||
| 1371 | + -webkit-animation-name: fadeInLeftBig; | ||
| 1372 | + animation-name: fadeInLeftBig; | ||
| 1373 | +} | ||
| 1374 | + | ||
| 1375 | +@-webkit-keyframes fadeInRight { | ||
| 1376 | + from { | ||
| 1377 | + opacity: 0; | ||
| 1378 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 1379 | + transform: translate3d(100%, 0, 0); | ||
| 1380 | + } | ||
| 1381 | + | ||
| 1382 | + to { | ||
| 1383 | + opacity: 1; | ||
| 1384 | + -webkit-transform: none; | ||
| 1385 | + transform: none; | ||
| 1386 | + } | ||
| 1387 | +} | ||
| 1388 | + | ||
| 1389 | +@keyframes fadeInRight { | ||
| 1390 | + from { | ||
| 1391 | + opacity: 0; | ||
| 1392 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 1393 | + transform: translate3d(100%, 0, 0); | ||
| 1394 | + } | ||
| 1395 | + | ||
| 1396 | + to { | ||
| 1397 | + opacity: 1; | ||
| 1398 | + -webkit-transform: none; | ||
| 1399 | + transform: none; | ||
| 1400 | + } | ||
| 1401 | +} | ||
| 1402 | + | ||
| 1403 | +.fadeInRight { | ||
| 1404 | + -webkit-animation-name: fadeInRight; | ||
| 1405 | + animation-name: fadeInRight; | ||
| 1406 | +} | ||
| 1407 | + | ||
| 1408 | +@-webkit-keyframes fadeInRightBig { | ||
| 1409 | + from { | ||
| 1410 | + opacity: 0; | ||
| 1411 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1412 | + transform: translate3d(2000px, 0, 0); | ||
| 1413 | + } | ||
| 1414 | + | ||
| 1415 | + to { | ||
| 1416 | + opacity: 1; | ||
| 1417 | + -webkit-transform: none; | ||
| 1418 | + transform: none; | ||
| 1419 | + } | ||
| 1420 | +} | ||
| 1421 | + | ||
| 1422 | +@keyframes fadeInRightBig { | ||
| 1423 | + from { | ||
| 1424 | + opacity: 0; | ||
| 1425 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1426 | + transform: translate3d(2000px, 0, 0); | ||
| 1427 | + } | ||
| 1428 | + | ||
| 1429 | + to { | ||
| 1430 | + opacity: 1; | ||
| 1431 | + -webkit-transform: none; | ||
| 1432 | + transform: none; | ||
| 1433 | + } | ||
| 1434 | +} | ||
| 1435 | + | ||
| 1436 | +.fadeInRightBig { | ||
| 1437 | + -webkit-animation-name: fadeInRightBig; | ||
| 1438 | + animation-name: fadeInRightBig; | ||
| 1439 | +} | ||
| 1440 | + | ||
| 1441 | +@-webkit-keyframes fadeInUp { | ||
| 1442 | + from { | ||
| 1443 | + opacity: 0; | ||
| 1444 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 1445 | + transform: translate3d(0, 100%, 0); | ||
| 1446 | + } | ||
| 1447 | + | ||
| 1448 | + to { | ||
| 1449 | + opacity: 1; | ||
| 1450 | + -webkit-transform: none; | ||
| 1451 | + transform: none; | ||
| 1452 | + } | ||
| 1453 | +} | ||
| 1454 | + | ||
| 1455 | +@keyframes fadeInUp { | ||
| 1456 | + from { | ||
| 1457 | + opacity: 0; | ||
| 1458 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 1459 | + transform: translate3d(0, 100%, 0); | ||
| 1460 | + } | ||
| 1461 | + | ||
| 1462 | + to { | ||
| 1463 | + opacity: 1; | ||
| 1464 | + -webkit-transform: none; | ||
| 1465 | + transform: none; | ||
| 1466 | + } | ||
| 1467 | +} | ||
| 1468 | + | ||
| 1469 | +.fadeInUp { | ||
| 1470 | + -webkit-animation-name: fadeInUp; | ||
| 1471 | + animation-name: fadeInUp; | ||
| 1472 | +} | ||
| 1473 | + | ||
| 1474 | +@-webkit-keyframes fadeInUpBig { | ||
| 1475 | + from { | ||
| 1476 | + opacity: 0; | ||
| 1477 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1478 | + transform: translate3d(0, 2000px, 0); | ||
| 1479 | + } | ||
| 1480 | + | ||
| 1481 | + to { | ||
| 1482 | + opacity: 1; | ||
| 1483 | + -webkit-transform: none; | ||
| 1484 | + transform: none; | ||
| 1485 | + } | ||
| 1486 | +} | ||
| 1487 | + | ||
| 1488 | +@keyframes fadeInUpBig { | ||
| 1489 | + from { | ||
| 1490 | + opacity: 0; | ||
| 1491 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1492 | + transform: translate3d(0, 2000px, 0); | ||
| 1493 | + } | ||
| 1494 | + | ||
| 1495 | + to { | ||
| 1496 | + opacity: 1; | ||
| 1497 | + -webkit-transform: none; | ||
| 1498 | + transform: none; | ||
| 1499 | + } | ||
| 1500 | +} | ||
| 1501 | + | ||
| 1502 | +.fadeInUpBig { | ||
| 1503 | + -webkit-animation-name: fadeInUpBig; | ||
| 1504 | + animation-name: fadeInUpBig; | ||
| 1505 | +} | ||
| 1506 | + | ||
| 1507 | +@-webkit-keyframes fadeOut { | ||
| 1508 | + from { | ||
| 1509 | + opacity: 1; | ||
| 1510 | + } | ||
| 1511 | + | ||
| 1512 | + to { | ||
| 1513 | + opacity: 0; | ||
| 1514 | + } | ||
| 1515 | +} | ||
| 1516 | + | ||
| 1517 | +@keyframes fadeOut { | ||
| 1518 | + from { | ||
| 1519 | + opacity: 1; | ||
| 1520 | + } | ||
| 1521 | + | ||
| 1522 | + to { | ||
| 1523 | + opacity: 0; | ||
| 1524 | + } | ||
| 1525 | +} | ||
| 1526 | + | ||
| 1527 | +.fadeOut { | ||
| 1528 | + -webkit-animation-name: fadeOut; | ||
| 1529 | + animation-name: fadeOut; | ||
| 1530 | +} | ||
| 1531 | + | ||
| 1532 | +@-webkit-keyframes fadeOutDown { | ||
| 1533 | + from { | ||
| 1534 | + opacity: 1; | ||
| 1535 | + } | ||
| 1536 | + | ||
| 1537 | + to { | ||
| 1538 | + opacity: 0; | ||
| 1539 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 1540 | + transform: translate3d(0, 100%, 0); | ||
| 1541 | + } | ||
| 1542 | +} | ||
| 1543 | + | ||
| 1544 | +@keyframes fadeOutDown { | ||
| 1545 | + from { | ||
| 1546 | + opacity: 1; | ||
| 1547 | + } | ||
| 1548 | + | ||
| 1549 | + to { | ||
| 1550 | + opacity: 0; | ||
| 1551 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 1552 | + transform: translate3d(0, 100%, 0); | ||
| 1553 | + } | ||
| 1554 | +} | ||
| 1555 | + | ||
| 1556 | +.fadeOutDown { | ||
| 1557 | + -webkit-animation-name: fadeOutDown; | ||
| 1558 | + animation-name: fadeOutDown; | ||
| 1559 | +} | ||
| 1560 | + | ||
| 1561 | +@-webkit-keyframes fadeOutDownBig { | ||
| 1562 | + from { | ||
| 1563 | + opacity: 1; | ||
| 1564 | + } | ||
| 1565 | + | ||
| 1566 | + to { | ||
| 1567 | + opacity: 0; | ||
| 1568 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1569 | + transform: translate3d(0, 2000px, 0); | ||
| 1570 | + } | ||
| 1571 | +} | ||
| 1572 | + | ||
| 1573 | +@keyframes fadeOutDownBig { | ||
| 1574 | + from { | ||
| 1575 | + opacity: 1; | ||
| 1576 | + } | ||
| 1577 | + | ||
| 1578 | + to { | ||
| 1579 | + opacity: 0; | ||
| 1580 | + -webkit-transform: translate3d(0, 2000px, 0); | ||
| 1581 | + transform: translate3d(0, 2000px, 0); | ||
| 1582 | + } | ||
| 1583 | +} | ||
| 1584 | + | ||
| 1585 | +.fadeOutDownBig { | ||
| 1586 | + -webkit-animation-name: fadeOutDownBig; | ||
| 1587 | + animation-name: fadeOutDownBig; | ||
| 1588 | +} | ||
| 1589 | + | ||
| 1590 | +@-webkit-keyframes fadeOutLeft { | ||
| 1591 | + from { | ||
| 1592 | + opacity: 1; | ||
| 1593 | + } | ||
| 1594 | + | ||
| 1595 | + to { | ||
| 1596 | + opacity: 0; | ||
| 1597 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 1598 | + transform: translate3d(-100%, 0, 0); | ||
| 1599 | + } | ||
| 1600 | +} | ||
| 1601 | + | ||
| 1602 | +@keyframes fadeOutLeft { | ||
| 1603 | + from { | ||
| 1604 | + opacity: 1; | ||
| 1605 | + } | ||
| 1606 | + | ||
| 1607 | + to { | ||
| 1608 | + opacity: 0; | ||
| 1609 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 1610 | + transform: translate3d(-100%, 0, 0); | ||
| 1611 | + } | ||
| 1612 | +} | ||
| 1613 | + | ||
| 1614 | +.fadeOutLeft { | ||
| 1615 | + -webkit-animation-name: fadeOutLeft; | ||
| 1616 | + animation-name: fadeOutLeft; | ||
| 1617 | +} | ||
| 1618 | + | ||
| 1619 | +@-webkit-keyframes fadeOutLeftBig { | ||
| 1620 | + from { | ||
| 1621 | + opacity: 1; | ||
| 1622 | + } | ||
| 1623 | + | ||
| 1624 | + to { | ||
| 1625 | + opacity: 0; | ||
| 1626 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1627 | + transform: translate3d(-2000px, 0, 0); | ||
| 1628 | + } | ||
| 1629 | +} | ||
| 1630 | + | ||
| 1631 | +@keyframes fadeOutLeftBig { | ||
| 1632 | + from { | ||
| 1633 | + opacity: 1; | ||
| 1634 | + } | ||
| 1635 | + | ||
| 1636 | + to { | ||
| 1637 | + opacity: 0; | ||
| 1638 | + -webkit-transform: translate3d(-2000px, 0, 0); | ||
| 1639 | + transform: translate3d(-2000px, 0, 0); | ||
| 1640 | + } | ||
| 1641 | +} | ||
| 1642 | + | ||
| 1643 | +.fadeOutLeftBig { | ||
| 1644 | + -webkit-animation-name: fadeOutLeftBig; | ||
| 1645 | + animation-name: fadeOutLeftBig; | ||
| 1646 | +} | ||
| 1647 | + | ||
| 1648 | +@-webkit-keyframes fadeOutRight { | ||
| 1649 | + from { | ||
| 1650 | + opacity: 1; | ||
| 1651 | + } | ||
| 1652 | + | ||
| 1653 | + to { | ||
| 1654 | + opacity: 0; | ||
| 1655 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 1656 | + transform: translate3d(100%, 0, 0); | ||
| 1657 | + } | ||
| 1658 | +} | ||
| 1659 | + | ||
| 1660 | +@keyframes fadeOutRight { | ||
| 1661 | + from { | ||
| 1662 | + opacity: 1; | ||
| 1663 | + } | ||
| 1664 | + | ||
| 1665 | + to { | ||
| 1666 | + opacity: 0; | ||
| 1667 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 1668 | + transform: translate3d(100%, 0, 0); | ||
| 1669 | + } | ||
| 1670 | +} | ||
| 1671 | + | ||
| 1672 | +.fadeOutRight { | ||
| 1673 | + -webkit-animation-name: fadeOutRight; | ||
| 1674 | + animation-name: fadeOutRight; | ||
| 1675 | +} | ||
| 1676 | + | ||
| 1677 | +@-webkit-keyframes fadeOutRightBig { | ||
| 1678 | + from { | ||
| 1679 | + opacity: 1; | ||
| 1680 | + } | ||
| 1681 | + | ||
| 1682 | + to { | ||
| 1683 | + opacity: 0; | ||
| 1684 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1685 | + transform: translate3d(2000px, 0, 0); | ||
| 1686 | + } | ||
| 1687 | +} | ||
| 1688 | + | ||
| 1689 | +@keyframes fadeOutRightBig { | ||
| 1690 | + from { | ||
| 1691 | + opacity: 1; | ||
| 1692 | + } | ||
| 1693 | + | ||
| 1694 | + to { | ||
| 1695 | + opacity: 0; | ||
| 1696 | + -webkit-transform: translate3d(2000px, 0, 0); | ||
| 1697 | + transform: translate3d(2000px, 0, 0); | ||
| 1698 | + } | ||
| 1699 | +} | ||
| 1700 | + | ||
| 1701 | +.fadeOutRightBig { | ||
| 1702 | + -webkit-animation-name: fadeOutRightBig; | ||
| 1703 | + animation-name: fadeOutRightBig; | ||
| 1704 | +} | ||
| 1705 | + | ||
| 1706 | +@-webkit-keyframes fadeOutUp { | ||
| 1707 | + from { | ||
| 1708 | + opacity: 1; | ||
| 1709 | + } | ||
| 1710 | + | ||
| 1711 | + to { | ||
| 1712 | + opacity: 0; | ||
| 1713 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 1714 | + transform: translate3d(0, -100%, 0); | ||
| 1715 | + } | ||
| 1716 | +} | ||
| 1717 | + | ||
| 1718 | +@keyframes fadeOutUp { | ||
| 1719 | + from { | ||
| 1720 | + opacity: 1; | ||
| 1721 | + } | ||
| 1722 | + | ||
| 1723 | + to { | ||
| 1724 | + opacity: 0; | ||
| 1725 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 1726 | + transform: translate3d(0, -100%, 0); | ||
| 1727 | + } | ||
| 1728 | +} | ||
| 1729 | + | ||
| 1730 | +.fadeOutUp { | ||
| 1731 | + -webkit-animation-name: fadeOutUp; | ||
| 1732 | + animation-name: fadeOutUp; | ||
| 1733 | +} | ||
| 1734 | + | ||
| 1735 | +@-webkit-keyframes fadeOutUpBig { | ||
| 1736 | + from { | ||
| 1737 | + opacity: 1; | ||
| 1738 | + } | ||
| 1739 | + | ||
| 1740 | + to { | ||
| 1741 | + opacity: 0; | ||
| 1742 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1743 | + transform: translate3d(0, -2000px, 0); | ||
| 1744 | + } | ||
| 1745 | +} | ||
| 1746 | + | ||
| 1747 | +@keyframes fadeOutUpBig { | ||
| 1748 | + from { | ||
| 1749 | + opacity: 1; | ||
| 1750 | + } | ||
| 1751 | + | ||
| 1752 | + to { | ||
| 1753 | + opacity: 0; | ||
| 1754 | + -webkit-transform: translate3d(0, -2000px, 0); | ||
| 1755 | + transform: translate3d(0, -2000px, 0); | ||
| 1756 | + } | ||
| 1757 | +} | ||
| 1758 | + | ||
| 1759 | +.fadeOutUpBig { | ||
| 1760 | + -webkit-animation-name: fadeOutUpBig; | ||
| 1761 | + animation-name: fadeOutUpBig; | ||
| 1762 | +} | ||
| 1763 | + | ||
| 1764 | +@-webkit-keyframes flip { | ||
| 1765 | + from { | ||
| 1766 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); | ||
| 1767 | + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); | ||
| 1768 | + -webkit-animation-timing-function: ease-out; | ||
| 1769 | + animation-timing-function: ease-out; | ||
| 1770 | + } | ||
| 1771 | + | ||
| 1772 | + 40% { | ||
| 1773 | + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); | ||
| 1774 | + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); | ||
| 1775 | + -webkit-animation-timing-function: ease-out; | ||
| 1776 | + animation-timing-function: ease-out; | ||
| 1777 | + } | ||
| 1778 | + | ||
| 1779 | + 50% { | ||
| 1780 | + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); | ||
| 1781 | + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); | ||
| 1782 | + -webkit-animation-timing-function: ease-in; | ||
| 1783 | + animation-timing-function: ease-in; | ||
| 1784 | + } | ||
| 1785 | + | ||
| 1786 | + 80% { | ||
| 1787 | + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); | ||
| 1788 | + transform: perspective(400px) scale3d(.95, .95, .95); | ||
| 1789 | + -webkit-animation-timing-function: ease-in; | ||
| 1790 | + animation-timing-function: ease-in; | ||
| 1791 | + } | ||
| 1792 | + | ||
| 1793 | + to { | ||
| 1794 | + -webkit-transform: perspective(400px); | ||
| 1795 | + transform: perspective(400px); | ||
| 1796 | + -webkit-animation-timing-function: ease-in; | ||
| 1797 | + animation-timing-function: ease-in; | ||
| 1798 | + } | ||
| 1799 | +} | ||
| 1800 | + | ||
| 1801 | +@keyframes flip { | ||
| 1802 | + from { | ||
| 1803 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); | ||
| 1804 | + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); | ||
| 1805 | + -webkit-animation-timing-function: ease-out; | ||
| 1806 | + animation-timing-function: ease-out; | ||
| 1807 | + } | ||
| 1808 | + | ||
| 1809 | + 40% { | ||
| 1810 | + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); | ||
| 1811 | + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); | ||
| 1812 | + -webkit-animation-timing-function: ease-out; | ||
| 1813 | + animation-timing-function: ease-out; | ||
| 1814 | + } | ||
| 1815 | + | ||
| 1816 | + 50% { | ||
| 1817 | + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); | ||
| 1818 | + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); | ||
| 1819 | + -webkit-animation-timing-function: ease-in; | ||
| 1820 | + animation-timing-function: ease-in; | ||
| 1821 | + } | ||
| 1822 | + | ||
| 1823 | + 80% { | ||
| 1824 | + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); | ||
| 1825 | + transform: perspective(400px) scale3d(.95, .95, .95); | ||
| 1826 | + -webkit-animation-timing-function: ease-in; | ||
| 1827 | + animation-timing-function: ease-in; | ||
| 1828 | + } | ||
| 1829 | + | ||
| 1830 | + to { | ||
| 1831 | + -webkit-transform: perspective(400px); | ||
| 1832 | + transform: perspective(400px); | ||
| 1833 | + -webkit-animation-timing-function: ease-in; | ||
| 1834 | + animation-timing-function: ease-in; | ||
| 1835 | + } | ||
| 1836 | +} | ||
| 1837 | + | ||
| 1838 | +.animated.flip { | ||
| 1839 | + -webkit-backface-visibility: visible; | ||
| 1840 | + backface-visibility: visible; | ||
| 1841 | + -webkit-animation-name: flip; | ||
| 1842 | + animation-name: flip; | ||
| 1843 | +} | ||
| 1844 | + | ||
| 1845 | +@-webkit-keyframes flipInX { | ||
| 1846 | + from { | ||
| 1847 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 1848 | + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 1849 | + -webkit-animation-timing-function: ease-in; | ||
| 1850 | + animation-timing-function: ease-in; | ||
| 1851 | + opacity: 0; | ||
| 1852 | + } | ||
| 1853 | + | ||
| 1854 | + 40% { | ||
| 1855 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 1856 | + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 1857 | + -webkit-animation-timing-function: ease-in; | ||
| 1858 | + animation-timing-function: ease-in; | ||
| 1859 | + } | ||
| 1860 | + | ||
| 1861 | + 60% { | ||
| 1862 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); | ||
| 1863 | + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); | ||
| 1864 | + opacity: 1; | ||
| 1865 | + } | ||
| 1866 | + | ||
| 1867 | + 80% { | ||
| 1868 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); | ||
| 1869 | + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); | ||
| 1870 | + } | ||
| 1871 | + | ||
| 1872 | + to { | ||
| 1873 | + -webkit-transform: perspective(400px); | ||
| 1874 | + transform: perspective(400px); | ||
| 1875 | + } | ||
| 1876 | +} | ||
| 1877 | + | ||
| 1878 | +@keyframes flipInX { | ||
| 1879 | + from { | ||
| 1880 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 1881 | + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 1882 | + -webkit-animation-timing-function: ease-in; | ||
| 1883 | + animation-timing-function: ease-in; | ||
| 1884 | + opacity: 0; | ||
| 1885 | + } | ||
| 1886 | + | ||
| 1887 | + 40% { | ||
| 1888 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 1889 | + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 1890 | + -webkit-animation-timing-function: ease-in; | ||
| 1891 | + animation-timing-function: ease-in; | ||
| 1892 | + } | ||
| 1893 | + | ||
| 1894 | + 60% { | ||
| 1895 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); | ||
| 1896 | + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); | ||
| 1897 | + opacity: 1; | ||
| 1898 | + } | ||
| 1899 | + | ||
| 1900 | + 80% { | ||
| 1901 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); | ||
| 1902 | + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); | ||
| 1903 | + } | ||
| 1904 | + | ||
| 1905 | + to { | ||
| 1906 | + -webkit-transform: perspective(400px); | ||
| 1907 | + transform: perspective(400px); | ||
| 1908 | + } | ||
| 1909 | +} | ||
| 1910 | + | ||
| 1911 | +.flipInX { | ||
| 1912 | + -webkit-backface-visibility: visible !important; | ||
| 1913 | + backface-visibility: visible !important; | ||
| 1914 | + -webkit-animation-name: flipInX; | ||
| 1915 | + animation-name: flipInX; | ||
| 1916 | +} | ||
| 1917 | + | ||
| 1918 | +@-webkit-keyframes flipInY { | ||
| 1919 | + from { | ||
| 1920 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 1921 | + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 1922 | + -webkit-animation-timing-function: ease-in; | ||
| 1923 | + animation-timing-function: ease-in; | ||
| 1924 | + opacity: 0; | ||
| 1925 | + } | ||
| 1926 | + | ||
| 1927 | + 40% { | ||
| 1928 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); | ||
| 1929 | + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); | ||
| 1930 | + -webkit-animation-timing-function: ease-in; | ||
| 1931 | + animation-timing-function: ease-in; | ||
| 1932 | + } | ||
| 1933 | + | ||
| 1934 | + 60% { | ||
| 1935 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); | ||
| 1936 | + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); | ||
| 1937 | + opacity: 1; | ||
| 1938 | + } | ||
| 1939 | + | ||
| 1940 | + 80% { | ||
| 1941 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); | ||
| 1942 | + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); | ||
| 1943 | + } | ||
| 1944 | + | ||
| 1945 | + to { | ||
| 1946 | + -webkit-transform: perspective(400px); | ||
| 1947 | + transform: perspective(400px); | ||
| 1948 | + } | ||
| 1949 | +} | ||
| 1950 | + | ||
| 1951 | +@keyframes flipInY { | ||
| 1952 | + from { | ||
| 1953 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 1954 | + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 1955 | + -webkit-animation-timing-function: ease-in; | ||
| 1956 | + animation-timing-function: ease-in; | ||
| 1957 | + opacity: 0; | ||
| 1958 | + } | ||
| 1959 | + | ||
| 1960 | + 40% { | ||
| 1961 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); | ||
| 1962 | + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); | ||
| 1963 | + -webkit-animation-timing-function: ease-in; | ||
| 1964 | + animation-timing-function: ease-in; | ||
| 1965 | + } | ||
| 1966 | + | ||
| 1967 | + 60% { | ||
| 1968 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); | ||
| 1969 | + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); | ||
| 1970 | + opacity: 1; | ||
| 1971 | + } | ||
| 1972 | + | ||
| 1973 | + 80% { | ||
| 1974 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); | ||
| 1975 | + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); | ||
| 1976 | + } | ||
| 1977 | + | ||
| 1978 | + to { | ||
| 1979 | + -webkit-transform: perspective(400px); | ||
| 1980 | + transform: perspective(400px); | ||
| 1981 | + } | ||
| 1982 | +} | ||
| 1983 | + | ||
| 1984 | +.flipInY { | ||
| 1985 | + -webkit-backface-visibility: visible !important; | ||
| 1986 | + backface-visibility: visible !important; | ||
| 1987 | + -webkit-animation-name: flipInY; | ||
| 1988 | + animation-name: flipInY; | ||
| 1989 | +} | ||
| 1990 | + | ||
| 1991 | +@-webkit-keyframes flipOutX { | ||
| 1992 | + from { | ||
| 1993 | + -webkit-transform: perspective(400px); | ||
| 1994 | + transform: perspective(400px); | ||
| 1995 | + } | ||
| 1996 | + | ||
| 1997 | + 30% { | ||
| 1998 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 1999 | + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 2000 | + opacity: 1; | ||
| 2001 | + } | ||
| 2002 | + | ||
| 2003 | + to { | ||
| 2004 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 2005 | + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 2006 | + opacity: 0; | ||
| 2007 | + } | ||
| 2008 | +} | ||
| 2009 | + | ||
| 2010 | +@keyframes flipOutX { | ||
| 2011 | + from { | ||
| 2012 | + -webkit-transform: perspective(400px); | ||
| 2013 | + transform: perspective(400px); | ||
| 2014 | + } | ||
| 2015 | + | ||
| 2016 | + 30% { | ||
| 2017 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 2018 | + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); | ||
| 2019 | + opacity: 1; | ||
| 2020 | + } | ||
| 2021 | + | ||
| 2022 | + to { | ||
| 2023 | + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 2024 | + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); | ||
| 2025 | + opacity: 0; | ||
| 2026 | + } | ||
| 2027 | +} | ||
| 2028 | + | ||
| 2029 | +.flipOutX { | ||
| 2030 | + -webkit-animation-name: flipOutX; | ||
| 2031 | + animation-name: flipOutX; | ||
| 2032 | + -webkit-backface-visibility: visible !important; | ||
| 2033 | + backface-visibility: visible !important; | ||
| 2034 | +} | ||
| 2035 | + | ||
| 2036 | +@-webkit-keyframes flipOutY { | ||
| 2037 | + from { | ||
| 2038 | + -webkit-transform: perspective(400px); | ||
| 2039 | + transform: perspective(400px); | ||
| 2040 | + } | ||
| 2041 | + | ||
| 2042 | + 30% { | ||
| 2043 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); | ||
| 2044 | + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); | ||
| 2045 | + opacity: 1; | ||
| 2046 | + } | ||
| 2047 | + | ||
| 2048 | + to { | ||
| 2049 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 2050 | + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 2051 | + opacity: 0; | ||
| 2052 | + } | ||
| 2053 | +} | ||
| 2054 | + | ||
| 2055 | +@keyframes flipOutY { | ||
| 2056 | + from { | ||
| 2057 | + -webkit-transform: perspective(400px); | ||
| 2058 | + transform: perspective(400px); | ||
| 2059 | + } | ||
| 2060 | + | ||
| 2061 | + 30% { | ||
| 2062 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); | ||
| 2063 | + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); | ||
| 2064 | + opacity: 1; | ||
| 2065 | + } | ||
| 2066 | + | ||
| 2067 | + to { | ||
| 2068 | + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 2069 | + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); | ||
| 2070 | + opacity: 0; | ||
| 2071 | + } | ||
| 2072 | +} | ||
| 2073 | + | ||
| 2074 | +.flipOutY { | ||
| 2075 | + -webkit-backface-visibility: visible !important; | ||
| 2076 | + backface-visibility: visible !important; | ||
| 2077 | + -webkit-animation-name: flipOutY; | ||
| 2078 | + animation-name: flipOutY; | ||
| 2079 | +} | ||
| 2080 | + | ||
| 2081 | +@-webkit-keyframes lightSpeedIn { | ||
| 2082 | + from { | ||
| 2083 | + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); | ||
| 2084 | + transform: translate3d(100%, 0, 0) skewX(-30deg); | ||
| 2085 | + opacity: 0; | ||
| 2086 | + } | ||
| 2087 | + | ||
| 2088 | + 60% { | ||
| 2089 | + -webkit-transform: skewX(20deg); | ||
| 2090 | + transform: skewX(20deg); | ||
| 2091 | + opacity: 1; | ||
| 2092 | + } | ||
| 2093 | + | ||
| 2094 | + 80% { | ||
| 2095 | + -webkit-transform: skewX(-5deg); | ||
| 2096 | + transform: skewX(-5deg); | ||
| 2097 | + opacity: 1; | ||
| 2098 | + } | ||
| 2099 | + | ||
| 2100 | + to { | ||
| 2101 | + -webkit-transform: none; | ||
| 2102 | + transform: none; | ||
| 2103 | + opacity: 1; | ||
| 2104 | + } | ||
| 2105 | +} | ||
| 2106 | + | ||
| 2107 | +@keyframes lightSpeedIn { | ||
| 2108 | + from { | ||
| 2109 | + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); | ||
| 2110 | + transform: translate3d(100%, 0, 0) skewX(-30deg); | ||
| 2111 | + opacity: 0; | ||
| 2112 | + } | ||
| 2113 | + | ||
| 2114 | + 60% { | ||
| 2115 | + -webkit-transform: skewX(20deg); | ||
| 2116 | + transform: skewX(20deg); | ||
| 2117 | + opacity: 1; | ||
| 2118 | + } | ||
| 2119 | + | ||
| 2120 | + 80% { | ||
| 2121 | + -webkit-transform: skewX(-5deg); | ||
| 2122 | + transform: skewX(-5deg); | ||
| 2123 | + opacity: 1; | ||
| 2124 | + } | ||
| 2125 | + | ||
| 2126 | + to { | ||
| 2127 | + -webkit-transform: none; | ||
| 2128 | + transform: none; | ||
| 2129 | + opacity: 1; | ||
| 2130 | + } | ||
| 2131 | +} | ||
| 2132 | + | ||
| 2133 | +.lightSpeedIn { | ||
| 2134 | + -webkit-animation-name: lightSpeedIn; | ||
| 2135 | + animation-name: lightSpeedIn; | ||
| 2136 | + -webkit-animation-timing-function: ease-out; | ||
| 2137 | + animation-timing-function: ease-out; | ||
| 2138 | +} | ||
| 2139 | + | ||
| 2140 | +@-webkit-keyframes lightSpeedOut { | ||
| 2141 | + from { | ||
| 2142 | + opacity: 1; | ||
| 2143 | + } | ||
| 2144 | + | ||
| 2145 | + to { | ||
| 2146 | + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); | ||
| 2147 | + transform: translate3d(100%, 0, 0) skewX(30deg); | ||
| 2148 | + opacity: 0; | ||
| 2149 | + } | ||
| 2150 | +} | ||
| 2151 | + | ||
| 2152 | +@keyframes lightSpeedOut { | ||
| 2153 | + from { | ||
| 2154 | + opacity: 1; | ||
| 2155 | + } | ||
| 2156 | + | ||
| 2157 | + to { | ||
| 2158 | + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); | ||
| 2159 | + transform: translate3d(100%, 0, 0) skewX(30deg); | ||
| 2160 | + opacity: 0; | ||
| 2161 | + } | ||
| 2162 | +} | ||
| 2163 | + | ||
| 2164 | +.lightSpeedOut { | ||
| 2165 | + -webkit-animation-name: lightSpeedOut; | ||
| 2166 | + animation-name: lightSpeedOut; | ||
| 2167 | + -webkit-animation-timing-function: ease-in; | ||
| 2168 | + animation-timing-function: ease-in; | ||
| 2169 | +} | ||
| 2170 | + | ||
| 2171 | +@-webkit-keyframes rotateIn { | ||
| 2172 | + from { | ||
| 2173 | + -webkit-transform-origin: center; | ||
| 2174 | + transform-origin: center; | ||
| 2175 | + -webkit-transform: rotate3d(0, 0, 1, -200deg); | ||
| 2176 | + transform: rotate3d(0, 0, 1, -200deg); | ||
| 2177 | + opacity: 0; | ||
| 2178 | + } | ||
| 2179 | + | ||
| 2180 | + to { | ||
| 2181 | + -webkit-transform-origin: center; | ||
| 2182 | + transform-origin: center; | ||
| 2183 | + -webkit-transform: none; | ||
| 2184 | + transform: none; | ||
| 2185 | + opacity: 1; | ||
| 2186 | + } | ||
| 2187 | +} | ||
| 2188 | + | ||
| 2189 | +@keyframes rotateIn { | ||
| 2190 | + from { | ||
| 2191 | + -webkit-transform-origin: center; | ||
| 2192 | + transform-origin: center; | ||
| 2193 | + -webkit-transform: rotate3d(0, 0, 1, -200deg); | ||
| 2194 | + transform: rotate3d(0, 0, 1, -200deg); | ||
| 2195 | + opacity: 0; | ||
| 2196 | + } | ||
| 2197 | + | ||
| 2198 | + to { | ||
| 2199 | + -webkit-transform-origin: center; | ||
| 2200 | + transform-origin: center; | ||
| 2201 | + -webkit-transform: none; | ||
| 2202 | + transform: none; | ||
| 2203 | + opacity: 1; | ||
| 2204 | + } | ||
| 2205 | +} | ||
| 2206 | + | ||
| 2207 | +.rotateIn { | ||
| 2208 | + -webkit-animation-name: rotateIn; | ||
| 2209 | + animation-name: rotateIn; | ||
| 2210 | +} | ||
| 2211 | + | ||
| 2212 | +@-webkit-keyframes rotateInDownLeft { | ||
| 2213 | + from { | ||
| 2214 | + -webkit-transform-origin: left bottom; | ||
| 2215 | + transform-origin: left bottom; | ||
| 2216 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2217 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2218 | + opacity: 0; | ||
| 2219 | + } | ||
| 2220 | + | ||
| 2221 | + to { | ||
| 2222 | + -webkit-transform-origin: left bottom; | ||
| 2223 | + transform-origin: left bottom; | ||
| 2224 | + -webkit-transform: none; | ||
| 2225 | + transform: none; | ||
| 2226 | + opacity: 1; | ||
| 2227 | + } | ||
| 2228 | +} | ||
| 2229 | + | ||
| 2230 | +@keyframes rotateInDownLeft { | ||
| 2231 | + from { | ||
| 2232 | + -webkit-transform-origin: left bottom; | ||
| 2233 | + transform-origin: left bottom; | ||
| 2234 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2235 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2236 | + opacity: 0; | ||
| 2237 | + } | ||
| 2238 | + | ||
| 2239 | + to { | ||
| 2240 | + -webkit-transform-origin: left bottom; | ||
| 2241 | + transform-origin: left bottom; | ||
| 2242 | + -webkit-transform: none; | ||
| 2243 | + transform: none; | ||
| 2244 | + opacity: 1; | ||
| 2245 | + } | ||
| 2246 | +} | ||
| 2247 | + | ||
| 2248 | +.rotateInDownLeft { | ||
| 2249 | + -webkit-animation-name: rotateInDownLeft; | ||
| 2250 | + animation-name: rotateInDownLeft; | ||
| 2251 | +} | ||
| 2252 | + | ||
| 2253 | +@-webkit-keyframes rotateInDownRight { | ||
| 2254 | + from { | ||
| 2255 | + -webkit-transform-origin: right bottom; | ||
| 2256 | + transform-origin: right bottom; | ||
| 2257 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2258 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2259 | + opacity: 0; | ||
| 2260 | + } | ||
| 2261 | + | ||
| 2262 | + to { | ||
| 2263 | + -webkit-transform-origin: right bottom; | ||
| 2264 | + transform-origin: right bottom; | ||
| 2265 | + -webkit-transform: none; | ||
| 2266 | + transform: none; | ||
| 2267 | + opacity: 1; | ||
| 2268 | + } | ||
| 2269 | +} | ||
| 2270 | + | ||
| 2271 | +@keyframes rotateInDownRight { | ||
| 2272 | + from { | ||
| 2273 | + -webkit-transform-origin: right bottom; | ||
| 2274 | + transform-origin: right bottom; | ||
| 2275 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2276 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2277 | + opacity: 0; | ||
| 2278 | + } | ||
| 2279 | + | ||
| 2280 | + to { | ||
| 2281 | + -webkit-transform-origin: right bottom; | ||
| 2282 | + transform-origin: right bottom; | ||
| 2283 | + -webkit-transform: none; | ||
| 2284 | + transform: none; | ||
| 2285 | + opacity: 1; | ||
| 2286 | + } | ||
| 2287 | +} | ||
| 2288 | + | ||
| 2289 | +.rotateInDownRight { | ||
| 2290 | + -webkit-animation-name: rotateInDownRight; | ||
| 2291 | + animation-name: rotateInDownRight; | ||
| 2292 | +} | ||
| 2293 | + | ||
| 2294 | +@-webkit-keyframes rotateInUpLeft { | ||
| 2295 | + from { | ||
| 2296 | + -webkit-transform-origin: left bottom; | ||
| 2297 | + transform-origin: left bottom; | ||
| 2298 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2299 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2300 | + opacity: 0; | ||
| 2301 | + } | ||
| 2302 | + | ||
| 2303 | + to { | ||
| 2304 | + -webkit-transform-origin: left bottom; | ||
| 2305 | + transform-origin: left bottom; | ||
| 2306 | + -webkit-transform: none; | ||
| 2307 | + transform: none; | ||
| 2308 | + opacity: 1; | ||
| 2309 | + } | ||
| 2310 | +} | ||
| 2311 | + | ||
| 2312 | +@keyframes rotateInUpLeft { | ||
| 2313 | + from { | ||
| 2314 | + -webkit-transform-origin: left bottom; | ||
| 2315 | + transform-origin: left bottom; | ||
| 2316 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2317 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2318 | + opacity: 0; | ||
| 2319 | + } | ||
| 2320 | + | ||
| 2321 | + to { | ||
| 2322 | + -webkit-transform-origin: left bottom; | ||
| 2323 | + transform-origin: left bottom; | ||
| 2324 | + -webkit-transform: none; | ||
| 2325 | + transform: none; | ||
| 2326 | + opacity: 1; | ||
| 2327 | + } | ||
| 2328 | +} | ||
| 2329 | + | ||
| 2330 | +.rotateInUpLeft { | ||
| 2331 | + -webkit-animation-name: rotateInUpLeft; | ||
| 2332 | + animation-name: rotateInUpLeft; | ||
| 2333 | +} | ||
| 2334 | + | ||
| 2335 | +@-webkit-keyframes rotateInUpRight { | ||
| 2336 | + from { | ||
| 2337 | + -webkit-transform-origin: right bottom; | ||
| 2338 | + transform-origin: right bottom; | ||
| 2339 | + -webkit-transform: rotate3d(0, 0, 1, -90deg); | ||
| 2340 | + transform: rotate3d(0, 0, 1, -90deg); | ||
| 2341 | + opacity: 0; | ||
| 2342 | + } | ||
| 2343 | + | ||
| 2344 | + to { | ||
| 2345 | + -webkit-transform-origin: right bottom; | ||
| 2346 | + transform-origin: right bottom; | ||
| 2347 | + -webkit-transform: none; | ||
| 2348 | + transform: none; | ||
| 2349 | + opacity: 1; | ||
| 2350 | + } | ||
| 2351 | +} | ||
| 2352 | + | ||
| 2353 | +@keyframes rotateInUpRight { | ||
| 2354 | + from { | ||
| 2355 | + -webkit-transform-origin: right bottom; | ||
| 2356 | + transform-origin: right bottom; | ||
| 2357 | + -webkit-transform: rotate3d(0, 0, 1, -90deg); | ||
| 2358 | + transform: rotate3d(0, 0, 1, -90deg); | ||
| 2359 | + opacity: 0; | ||
| 2360 | + } | ||
| 2361 | + | ||
| 2362 | + to { | ||
| 2363 | + -webkit-transform-origin: right bottom; | ||
| 2364 | + transform-origin: right bottom; | ||
| 2365 | + -webkit-transform: none; | ||
| 2366 | + transform: none; | ||
| 2367 | + opacity: 1; | ||
| 2368 | + } | ||
| 2369 | +} | ||
| 2370 | + | ||
| 2371 | +.rotateInUpRight { | ||
| 2372 | + -webkit-animation-name: rotateInUpRight; | ||
| 2373 | + animation-name: rotateInUpRight; | ||
| 2374 | +} | ||
| 2375 | + | ||
| 2376 | +@-webkit-keyframes rotateOut { | ||
| 2377 | + from { | ||
| 2378 | + -webkit-transform-origin: center; | ||
| 2379 | + transform-origin: center; | ||
| 2380 | + opacity: 1; | ||
| 2381 | + } | ||
| 2382 | + | ||
| 2383 | + to { | ||
| 2384 | + -webkit-transform-origin: center; | ||
| 2385 | + transform-origin: center; | ||
| 2386 | + -webkit-transform: rotate3d(0, 0, 1, 200deg); | ||
| 2387 | + transform: rotate3d(0, 0, 1, 200deg); | ||
| 2388 | + opacity: 0; | ||
| 2389 | + } | ||
| 2390 | +} | ||
| 2391 | + | ||
| 2392 | +@keyframes rotateOut { | ||
| 2393 | + from { | ||
| 2394 | + -webkit-transform-origin: center; | ||
| 2395 | + transform-origin: center; | ||
| 2396 | + opacity: 1; | ||
| 2397 | + } | ||
| 2398 | + | ||
| 2399 | + to { | ||
| 2400 | + -webkit-transform-origin: center; | ||
| 2401 | + transform-origin: center; | ||
| 2402 | + -webkit-transform: rotate3d(0, 0, 1, 200deg); | ||
| 2403 | + transform: rotate3d(0, 0, 1, 200deg); | ||
| 2404 | + opacity: 0; | ||
| 2405 | + } | ||
| 2406 | +} | ||
| 2407 | + | ||
| 2408 | +.rotateOut { | ||
| 2409 | + -webkit-animation-name: rotateOut; | ||
| 2410 | + animation-name: rotateOut; | ||
| 2411 | +} | ||
| 2412 | + | ||
| 2413 | +@-webkit-keyframes rotateOutDownLeft { | ||
| 2414 | + from { | ||
| 2415 | + -webkit-transform-origin: left bottom; | ||
| 2416 | + transform-origin: left bottom; | ||
| 2417 | + opacity: 1; | ||
| 2418 | + } | ||
| 2419 | + | ||
| 2420 | + to { | ||
| 2421 | + -webkit-transform-origin: left bottom; | ||
| 2422 | + transform-origin: left bottom; | ||
| 2423 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2424 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2425 | + opacity: 0; | ||
| 2426 | + } | ||
| 2427 | +} | ||
| 2428 | + | ||
| 2429 | +@keyframes rotateOutDownLeft { | ||
| 2430 | + from { | ||
| 2431 | + -webkit-transform-origin: left bottom; | ||
| 2432 | + transform-origin: left bottom; | ||
| 2433 | + opacity: 1; | ||
| 2434 | + } | ||
| 2435 | + | ||
| 2436 | + to { | ||
| 2437 | + -webkit-transform-origin: left bottom; | ||
| 2438 | + transform-origin: left bottom; | ||
| 2439 | + -webkit-transform: rotate3d(0, 0, 1, 45deg); | ||
| 2440 | + transform: rotate3d(0, 0, 1, 45deg); | ||
| 2441 | + opacity: 0; | ||
| 2442 | + } | ||
| 2443 | +} | ||
| 2444 | + | ||
| 2445 | +.rotateOutDownLeft { | ||
| 2446 | + -webkit-animation-name: rotateOutDownLeft; | ||
| 2447 | + animation-name: rotateOutDownLeft; | ||
| 2448 | +} | ||
| 2449 | + | ||
| 2450 | +@-webkit-keyframes rotateOutDownRight { | ||
| 2451 | + from { | ||
| 2452 | + -webkit-transform-origin: right bottom; | ||
| 2453 | + transform-origin: right bottom; | ||
| 2454 | + opacity: 1; | ||
| 2455 | + } | ||
| 2456 | + | ||
| 2457 | + to { | ||
| 2458 | + -webkit-transform-origin: right bottom; | ||
| 2459 | + transform-origin: right bottom; | ||
| 2460 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2461 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2462 | + opacity: 0; | ||
| 2463 | + } | ||
| 2464 | +} | ||
| 2465 | + | ||
| 2466 | +@keyframes rotateOutDownRight { | ||
| 2467 | + from { | ||
| 2468 | + -webkit-transform-origin: right bottom; | ||
| 2469 | + transform-origin: right bottom; | ||
| 2470 | + opacity: 1; | ||
| 2471 | + } | ||
| 2472 | + | ||
| 2473 | + to { | ||
| 2474 | + -webkit-transform-origin: right bottom; | ||
| 2475 | + transform-origin: right bottom; | ||
| 2476 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2477 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2478 | + opacity: 0; | ||
| 2479 | + } | ||
| 2480 | +} | ||
| 2481 | + | ||
| 2482 | +.rotateOutDownRight { | ||
| 2483 | + -webkit-animation-name: rotateOutDownRight; | ||
| 2484 | + animation-name: rotateOutDownRight; | ||
| 2485 | +} | ||
| 2486 | + | ||
| 2487 | +@-webkit-keyframes rotateOutUpLeft { | ||
| 2488 | + from { | ||
| 2489 | + -webkit-transform-origin: left bottom; | ||
| 2490 | + transform-origin: left bottom; | ||
| 2491 | + opacity: 1; | ||
| 2492 | + } | ||
| 2493 | + | ||
| 2494 | + to { | ||
| 2495 | + -webkit-transform-origin: left bottom; | ||
| 2496 | + transform-origin: left bottom; | ||
| 2497 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2498 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2499 | + opacity: 0; | ||
| 2500 | + } | ||
| 2501 | +} | ||
| 2502 | + | ||
| 2503 | +@keyframes rotateOutUpLeft { | ||
| 2504 | + from { | ||
| 2505 | + -webkit-transform-origin: left bottom; | ||
| 2506 | + transform-origin: left bottom; | ||
| 2507 | + opacity: 1; | ||
| 2508 | + } | ||
| 2509 | + | ||
| 2510 | + to { | ||
| 2511 | + -webkit-transform-origin: left bottom; | ||
| 2512 | + transform-origin: left bottom; | ||
| 2513 | + -webkit-transform: rotate3d(0, 0, 1, -45deg); | ||
| 2514 | + transform: rotate3d(0, 0, 1, -45deg); | ||
| 2515 | + opacity: 0; | ||
| 2516 | + } | ||
| 2517 | +} | ||
| 2518 | + | ||
| 2519 | +.rotateOutUpLeft { | ||
| 2520 | + -webkit-animation-name: rotateOutUpLeft; | ||
| 2521 | + animation-name: rotateOutUpLeft; | ||
| 2522 | +} | ||
| 2523 | + | ||
| 2524 | +@-webkit-keyframes rotateOutUpRight { | ||
| 2525 | + from { | ||
| 2526 | + -webkit-transform-origin: right bottom; | ||
| 2527 | + transform-origin: right bottom; | ||
| 2528 | + opacity: 1; | ||
| 2529 | + } | ||
| 2530 | + | ||
| 2531 | + to { | ||
| 2532 | + -webkit-transform-origin: right bottom; | ||
| 2533 | + transform-origin: right bottom; | ||
| 2534 | + -webkit-transform: rotate3d(0, 0, 1, 90deg); | ||
| 2535 | + transform: rotate3d(0, 0, 1, 90deg); | ||
| 2536 | + opacity: 0; | ||
| 2537 | + } | ||
| 2538 | +} | ||
| 2539 | + | ||
| 2540 | +@keyframes rotateOutUpRight { | ||
| 2541 | + from { | ||
| 2542 | + -webkit-transform-origin: right bottom; | ||
| 2543 | + transform-origin: right bottom; | ||
| 2544 | + opacity: 1; | ||
| 2545 | + } | ||
| 2546 | + | ||
| 2547 | + to { | ||
| 2548 | + -webkit-transform-origin: right bottom; | ||
| 2549 | + transform-origin: right bottom; | ||
| 2550 | + -webkit-transform: rotate3d(0, 0, 1, 90deg); | ||
| 2551 | + transform: rotate3d(0, 0, 1, 90deg); | ||
| 2552 | + opacity: 0; | ||
| 2553 | + } | ||
| 2554 | +} | ||
| 2555 | + | ||
| 2556 | +.rotateOutUpRight { | ||
| 2557 | + -webkit-animation-name: rotateOutUpRight; | ||
| 2558 | + animation-name: rotateOutUpRight; | ||
| 2559 | +} | ||
| 2560 | + | ||
| 2561 | +@-webkit-keyframes hinge { | ||
| 2562 | + 0% { | ||
| 2563 | + -webkit-transform-origin: top left; | ||
| 2564 | + transform-origin: top left; | ||
| 2565 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2566 | + animation-timing-function: ease-in-out; | ||
| 2567 | + } | ||
| 2568 | + | ||
| 2569 | + 20%, 60% { | ||
| 2570 | + -webkit-transform: rotate3d(0, 0, 1, 80deg); | ||
| 2571 | + transform: rotate3d(0, 0, 1, 80deg); | ||
| 2572 | + -webkit-transform-origin: top left; | ||
| 2573 | + transform-origin: top left; | ||
| 2574 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2575 | + animation-timing-function: ease-in-out; | ||
| 2576 | + } | ||
| 2577 | + | ||
| 2578 | + 40%, 80% { | ||
| 2579 | + -webkit-transform: rotate3d(0, 0, 1, 60deg); | ||
| 2580 | + transform: rotate3d(0, 0, 1, 60deg); | ||
| 2581 | + -webkit-transform-origin: top left; | ||
| 2582 | + transform-origin: top left; | ||
| 2583 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2584 | + animation-timing-function: ease-in-out; | ||
| 2585 | + opacity: 1; | ||
| 2586 | + } | ||
| 2587 | + | ||
| 2588 | + to { | ||
| 2589 | + -webkit-transform: translate3d(0, 700px, 0); | ||
| 2590 | + transform: translate3d(0, 700px, 0); | ||
| 2591 | + opacity: 0; | ||
| 2592 | + } | ||
| 2593 | +} | ||
| 2594 | + | ||
| 2595 | +@keyframes hinge { | ||
| 2596 | + 0% { | ||
| 2597 | + -webkit-transform-origin: top left; | ||
| 2598 | + transform-origin: top left; | ||
| 2599 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2600 | + animation-timing-function: ease-in-out; | ||
| 2601 | + } | ||
| 2602 | + | ||
| 2603 | + 20%, 60% { | ||
| 2604 | + -webkit-transform: rotate3d(0, 0, 1, 80deg); | ||
| 2605 | + transform: rotate3d(0, 0, 1, 80deg); | ||
| 2606 | + -webkit-transform-origin: top left; | ||
| 2607 | + transform-origin: top left; | ||
| 2608 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2609 | + animation-timing-function: ease-in-out; | ||
| 2610 | + } | ||
| 2611 | + | ||
| 2612 | + 40%, 80% { | ||
| 2613 | + -webkit-transform: rotate3d(0, 0, 1, 60deg); | ||
| 2614 | + transform: rotate3d(0, 0, 1, 60deg); | ||
| 2615 | + -webkit-transform-origin: top left; | ||
| 2616 | + transform-origin: top left; | ||
| 2617 | + -webkit-animation-timing-function: ease-in-out; | ||
| 2618 | + animation-timing-function: ease-in-out; | ||
| 2619 | + opacity: 1; | ||
| 2620 | + } | ||
| 2621 | + | ||
| 2622 | + to { | ||
| 2623 | + -webkit-transform: translate3d(0, 700px, 0); | ||
| 2624 | + transform: translate3d(0, 700px, 0); | ||
| 2625 | + opacity: 0; | ||
| 2626 | + } | ||
| 2627 | +} | ||
| 2628 | + | ||
| 2629 | +.hinge { | ||
| 2630 | + -webkit-animation-name: hinge; | ||
| 2631 | + animation-name: hinge; | ||
| 2632 | +} | ||
| 2633 | + | ||
| 2634 | +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ | ||
| 2635 | + | ||
| 2636 | +@-webkit-keyframes rollIn { | ||
| 2637 | + from { | ||
| 2638 | + opacity: 0; | ||
| 2639 | + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
| 2640 | + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
| 2641 | + } | ||
| 2642 | + | ||
| 2643 | + to { | ||
| 2644 | + opacity: 1; | ||
| 2645 | + -webkit-transform: none; | ||
| 2646 | + transform: none; | ||
| 2647 | + } | ||
| 2648 | +} | ||
| 2649 | + | ||
| 2650 | +@keyframes rollIn { | ||
| 2651 | + from { | ||
| 2652 | + opacity: 0; | ||
| 2653 | + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
| 2654 | + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
| 2655 | + } | ||
| 2656 | + | ||
| 2657 | + to { | ||
| 2658 | + opacity: 1; | ||
| 2659 | + -webkit-transform: none; | ||
| 2660 | + transform: none; | ||
| 2661 | + } | ||
| 2662 | +} | ||
| 2663 | + | ||
| 2664 | +.rollIn { | ||
| 2665 | + -webkit-animation-name: rollIn; | ||
| 2666 | + animation-name: rollIn; | ||
| 2667 | +} | ||
| 2668 | + | ||
| 2669 | +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ | ||
| 2670 | + | ||
| 2671 | +@-webkit-keyframes rollOut { | ||
| 2672 | + from { | ||
| 2673 | + opacity: 1; | ||
| 2674 | + } | ||
| 2675 | + | ||
| 2676 | + to { | ||
| 2677 | + opacity: 0; | ||
| 2678 | + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); | ||
| 2679 | + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); | ||
| 2680 | + } | ||
| 2681 | +} | ||
| 2682 | + | ||
| 2683 | +@keyframes rollOut { | ||
| 2684 | + from { | ||
| 2685 | + opacity: 1; | ||
| 2686 | + } | ||
| 2687 | + | ||
| 2688 | + to { | ||
| 2689 | + opacity: 0; | ||
| 2690 | + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); | ||
| 2691 | + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); | ||
| 2692 | + } | ||
| 2693 | +} | ||
| 2694 | + | ||
| 2695 | +.rollOut { | ||
| 2696 | + -webkit-animation-name: rollOut; | ||
| 2697 | + animation-name: rollOut; | ||
| 2698 | +} | ||
| 2699 | + | ||
| 2700 | +@-webkit-keyframes zoomIn { | ||
| 2701 | + from { | ||
| 2702 | + opacity: 0; | ||
| 2703 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 2704 | + transform: scale3d(.3, .3, .3); | ||
| 2705 | + } | ||
| 2706 | + | ||
| 2707 | + 50% { | ||
| 2708 | + opacity: 1; | ||
| 2709 | + } | ||
| 2710 | +} | ||
| 2711 | + | ||
| 2712 | +@keyframes zoomIn { | ||
| 2713 | + from { | ||
| 2714 | + opacity: 0; | ||
| 2715 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 2716 | + transform: scale3d(.3, .3, .3); | ||
| 2717 | + } | ||
| 2718 | + | ||
| 2719 | + 50% { | ||
| 2720 | + opacity: 1; | ||
| 2721 | + } | ||
| 2722 | +} | ||
| 2723 | + | ||
| 2724 | +.zoomIn { | ||
| 2725 | + -webkit-animation-name: zoomIn; | ||
| 2726 | + animation-name: zoomIn; | ||
| 2727 | +} | ||
| 2728 | + | ||
| 2729 | +@-webkit-keyframes zoomInDown { | ||
| 2730 | + from { | ||
| 2731 | + opacity: 0; | ||
| 2732 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); | ||
| 2733 | + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); | ||
| 2734 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2735 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2736 | + } | ||
| 2737 | + | ||
| 2738 | + 60% { | ||
| 2739 | + opacity: 1; | ||
| 2740 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 2741 | + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 2742 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2743 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2744 | + } | ||
| 2745 | +} | ||
| 2746 | + | ||
| 2747 | +@keyframes zoomInDown { | ||
| 2748 | + from { | ||
| 2749 | + opacity: 0; | ||
| 2750 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); | ||
| 2751 | + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); | ||
| 2752 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2753 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2754 | + } | ||
| 2755 | + | ||
| 2756 | + 60% { | ||
| 2757 | + opacity: 1; | ||
| 2758 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 2759 | + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 2760 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2761 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2762 | + } | ||
| 2763 | +} | ||
| 2764 | + | ||
| 2765 | +.zoomInDown { | ||
| 2766 | + -webkit-animation-name: zoomInDown; | ||
| 2767 | + animation-name: zoomInDown; | ||
| 2768 | +} | ||
| 2769 | + | ||
| 2770 | +@-webkit-keyframes zoomInLeft { | ||
| 2771 | + from { | ||
| 2772 | + opacity: 0; | ||
| 2773 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); | ||
| 2774 | + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); | ||
| 2775 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2776 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2777 | + } | ||
| 2778 | + | ||
| 2779 | + 60% { | ||
| 2780 | + opacity: 1; | ||
| 2781 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); | ||
| 2782 | + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); | ||
| 2783 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2784 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2785 | + } | ||
| 2786 | +} | ||
| 2787 | + | ||
| 2788 | +@keyframes zoomInLeft { | ||
| 2789 | + from { | ||
| 2790 | + opacity: 0; | ||
| 2791 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); | ||
| 2792 | + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); | ||
| 2793 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2794 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2795 | + } | ||
| 2796 | + | ||
| 2797 | + 60% { | ||
| 2798 | + opacity: 1; | ||
| 2799 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); | ||
| 2800 | + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); | ||
| 2801 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2802 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2803 | + } | ||
| 2804 | +} | ||
| 2805 | + | ||
| 2806 | +.zoomInLeft { | ||
| 2807 | + -webkit-animation-name: zoomInLeft; | ||
| 2808 | + animation-name: zoomInLeft; | ||
| 2809 | +} | ||
| 2810 | + | ||
| 2811 | +@-webkit-keyframes zoomInRight { | ||
| 2812 | + from { | ||
| 2813 | + opacity: 0; | ||
| 2814 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); | ||
| 2815 | + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); | ||
| 2816 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2817 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2818 | + } | ||
| 2819 | + | ||
| 2820 | + 60% { | ||
| 2821 | + opacity: 1; | ||
| 2822 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); | ||
| 2823 | + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); | ||
| 2824 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2825 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2826 | + } | ||
| 2827 | +} | ||
| 2828 | + | ||
| 2829 | +@keyframes zoomInRight { | ||
| 2830 | + from { | ||
| 2831 | + opacity: 0; | ||
| 2832 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); | ||
| 2833 | + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); | ||
| 2834 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2835 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2836 | + } | ||
| 2837 | + | ||
| 2838 | + 60% { | ||
| 2839 | + opacity: 1; | ||
| 2840 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); | ||
| 2841 | + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); | ||
| 2842 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2843 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2844 | + } | ||
| 2845 | +} | ||
| 2846 | + | ||
| 2847 | +.zoomInRight { | ||
| 2848 | + -webkit-animation-name: zoomInRight; | ||
| 2849 | + animation-name: zoomInRight; | ||
| 2850 | +} | ||
| 2851 | + | ||
| 2852 | +@-webkit-keyframes zoomInUp { | ||
| 2853 | + from { | ||
| 2854 | + opacity: 0; | ||
| 2855 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); | ||
| 2856 | + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); | ||
| 2857 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2858 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2859 | + } | ||
| 2860 | + | ||
| 2861 | + 60% { | ||
| 2862 | + opacity: 1; | ||
| 2863 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2864 | + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2865 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2866 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2867 | + } | ||
| 2868 | +} | ||
| 2869 | + | ||
| 2870 | +@keyframes zoomInUp { | ||
| 2871 | + from { | ||
| 2872 | + opacity: 0; | ||
| 2873 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); | ||
| 2874 | + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); | ||
| 2875 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2876 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2877 | + } | ||
| 2878 | + | ||
| 2879 | + 60% { | ||
| 2880 | + opacity: 1; | ||
| 2881 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2882 | + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2883 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2884 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2885 | + } | ||
| 2886 | +} | ||
| 2887 | + | ||
| 2888 | +.zoomInUp { | ||
| 2889 | + -webkit-animation-name: zoomInUp; | ||
| 2890 | + animation-name: zoomInUp; | ||
| 2891 | +} | ||
| 2892 | + | ||
| 2893 | +@-webkit-keyframes zoomOut { | ||
| 2894 | + from { | ||
| 2895 | + opacity: 1; | ||
| 2896 | + } | ||
| 2897 | + | ||
| 2898 | + 50% { | ||
| 2899 | + opacity: 0; | ||
| 2900 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 2901 | + transform: scale3d(.3, .3, .3); | ||
| 2902 | + } | ||
| 2903 | + | ||
| 2904 | + to { | ||
| 2905 | + opacity: 0; | ||
| 2906 | + } | ||
| 2907 | +} | ||
| 2908 | + | ||
| 2909 | +@keyframes zoomOut { | ||
| 2910 | + from { | ||
| 2911 | + opacity: 1; | ||
| 2912 | + } | ||
| 2913 | + | ||
| 2914 | + 50% { | ||
| 2915 | + opacity: 0; | ||
| 2916 | + -webkit-transform: scale3d(.3, .3, .3); | ||
| 2917 | + transform: scale3d(.3, .3, .3); | ||
| 2918 | + } | ||
| 2919 | + | ||
| 2920 | + to { | ||
| 2921 | + opacity: 0; | ||
| 2922 | + } | ||
| 2923 | +} | ||
| 2924 | + | ||
| 2925 | +.zoomOut { | ||
| 2926 | + -webkit-animation-name: zoomOut; | ||
| 2927 | + animation-name: zoomOut; | ||
| 2928 | +} | ||
| 2929 | + | ||
| 2930 | +@-webkit-keyframes zoomOutDown { | ||
| 2931 | + 40% { | ||
| 2932 | + opacity: 1; | ||
| 2933 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2934 | + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2935 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2936 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2937 | + } | ||
| 2938 | + | ||
| 2939 | + to { | ||
| 2940 | + opacity: 0; | ||
| 2941 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); | ||
| 2942 | + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); | ||
| 2943 | + -webkit-transform-origin: center bottom; | ||
| 2944 | + transform-origin: center bottom; | ||
| 2945 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2946 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2947 | + } | ||
| 2948 | +} | ||
| 2949 | + | ||
| 2950 | +@keyframes zoomOutDown { | ||
| 2951 | + 40% { | ||
| 2952 | + opacity: 1; | ||
| 2953 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2954 | + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); | ||
| 2955 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2956 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 2957 | + } | ||
| 2958 | + | ||
| 2959 | + to { | ||
| 2960 | + opacity: 0; | ||
| 2961 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); | ||
| 2962 | + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); | ||
| 2963 | + -webkit-transform-origin: center bottom; | ||
| 2964 | + transform-origin: center bottom; | ||
| 2965 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2966 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 2967 | + } | ||
| 2968 | +} | ||
| 2969 | + | ||
| 2970 | +.zoomOutDown { | ||
| 2971 | + -webkit-animation-name: zoomOutDown; | ||
| 2972 | + animation-name: zoomOutDown; | ||
| 2973 | +} | ||
| 2974 | + | ||
| 2975 | +@-webkit-keyframes zoomOutLeft { | ||
| 2976 | + 40% { | ||
| 2977 | + opacity: 1; | ||
| 2978 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); | ||
| 2979 | + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); | ||
| 2980 | + } | ||
| 2981 | + | ||
| 2982 | + to { | ||
| 2983 | + opacity: 0; | ||
| 2984 | + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); | ||
| 2985 | + transform: scale(.1) translate3d(-2000px, 0, 0); | ||
| 2986 | + -webkit-transform-origin: left center; | ||
| 2987 | + transform-origin: left center; | ||
| 2988 | + } | ||
| 2989 | +} | ||
| 2990 | + | ||
| 2991 | +@keyframes zoomOutLeft { | ||
| 2992 | + 40% { | ||
| 2993 | + opacity: 1; | ||
| 2994 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); | ||
| 2995 | + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); | ||
| 2996 | + } | ||
| 2997 | + | ||
| 2998 | + to { | ||
| 2999 | + opacity: 0; | ||
| 3000 | + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); | ||
| 3001 | + transform: scale(.1) translate3d(-2000px, 0, 0); | ||
| 3002 | + -webkit-transform-origin: left center; | ||
| 3003 | + transform-origin: left center; | ||
| 3004 | + } | ||
| 3005 | +} | ||
| 3006 | + | ||
| 3007 | +.zoomOutLeft { | ||
| 3008 | + -webkit-animation-name: zoomOutLeft; | ||
| 3009 | + animation-name: zoomOutLeft; | ||
| 3010 | +} | ||
| 3011 | + | ||
| 3012 | +@-webkit-keyframes zoomOutRight { | ||
| 3013 | + 40% { | ||
| 3014 | + opacity: 1; | ||
| 3015 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); | ||
| 3016 | + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); | ||
| 3017 | + } | ||
| 3018 | + | ||
| 3019 | + to { | ||
| 3020 | + opacity: 0; | ||
| 3021 | + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); | ||
| 3022 | + transform: scale(.1) translate3d(2000px, 0, 0); | ||
| 3023 | + -webkit-transform-origin: right center; | ||
| 3024 | + transform-origin: right center; | ||
| 3025 | + } | ||
| 3026 | +} | ||
| 3027 | + | ||
| 3028 | +@keyframes zoomOutRight { | ||
| 3029 | + 40% { | ||
| 3030 | + opacity: 1; | ||
| 3031 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); | ||
| 3032 | + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); | ||
| 3033 | + } | ||
| 3034 | + | ||
| 3035 | + to { | ||
| 3036 | + opacity: 0; | ||
| 3037 | + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); | ||
| 3038 | + transform: scale(.1) translate3d(2000px, 0, 0); | ||
| 3039 | + -webkit-transform-origin: right center; | ||
| 3040 | + transform-origin: right center; | ||
| 3041 | + } | ||
| 3042 | +} | ||
| 3043 | + | ||
| 3044 | +.zoomOutRight { | ||
| 3045 | + -webkit-animation-name: zoomOutRight; | ||
| 3046 | + animation-name: zoomOutRight; | ||
| 3047 | +} | ||
| 3048 | + | ||
| 3049 | +@-webkit-keyframes zoomOutUp { | ||
| 3050 | + 40% { | ||
| 3051 | + opacity: 1; | ||
| 3052 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 3053 | + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 3054 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 3055 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 3056 | + } | ||
| 3057 | + | ||
| 3058 | + to { | ||
| 3059 | + opacity: 0; | ||
| 3060 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); | ||
| 3061 | + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); | ||
| 3062 | + -webkit-transform-origin: center bottom; | ||
| 3063 | + transform-origin: center bottom; | ||
| 3064 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 3065 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 3066 | + } | ||
| 3067 | +} | ||
| 3068 | + | ||
| 3069 | +@keyframes zoomOutUp { | ||
| 3070 | + 40% { | ||
| 3071 | + opacity: 1; | ||
| 3072 | + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 3073 | + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); | ||
| 3074 | + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 3075 | + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); | ||
| 3076 | + } | ||
| 3077 | + | ||
| 3078 | + to { | ||
| 3079 | + opacity: 0; | ||
| 3080 | + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); | ||
| 3081 | + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); | ||
| 3082 | + -webkit-transform-origin: center bottom; | ||
| 3083 | + transform-origin: center bottom; | ||
| 3084 | + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 3085 | + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); | ||
| 3086 | + } | ||
| 3087 | +} | ||
| 3088 | + | ||
| 3089 | +.zoomOutUp { | ||
| 3090 | + -webkit-animation-name: zoomOutUp; | ||
| 3091 | + animation-name: zoomOutUp; | ||
| 3092 | +} | ||
| 3093 | + | ||
| 3094 | +@-webkit-keyframes slideInDown { | ||
| 3095 | + from { | ||
| 3096 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 3097 | + transform: translate3d(0, -100%, 0); | ||
| 3098 | + visibility: visible; | ||
| 3099 | + } | ||
| 3100 | + | ||
| 3101 | + to { | ||
| 3102 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3103 | + transform: translate3d(0, 0, 0); | ||
| 3104 | + } | ||
| 3105 | +} | ||
| 3106 | + | ||
| 3107 | +@keyframes slideInDown { | ||
| 3108 | + from { | ||
| 3109 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 3110 | + transform: translate3d(0, -100%, 0); | ||
| 3111 | + visibility: visible; | ||
| 3112 | + } | ||
| 3113 | + | ||
| 3114 | + to { | ||
| 3115 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3116 | + transform: translate3d(0, 0, 0); | ||
| 3117 | + } | ||
| 3118 | +} | ||
| 3119 | + | ||
| 3120 | +.slideInDown { | ||
| 3121 | + -webkit-animation-name: slideInDown; | ||
| 3122 | + animation-name: slideInDown; | ||
| 3123 | +} | ||
| 3124 | + | ||
| 3125 | +@-webkit-keyframes slideInLeft { | ||
| 3126 | + from { | ||
| 3127 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 3128 | + transform: translate3d(-100%, 0, 0); | ||
| 3129 | + visibility: visible; | ||
| 3130 | + } | ||
| 3131 | + | ||
| 3132 | + to { | ||
| 3133 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3134 | + transform: translate3d(0, 0, 0); | ||
| 3135 | + } | ||
| 3136 | +} | ||
| 3137 | + | ||
| 3138 | +@keyframes slideInLeft { | ||
| 3139 | + from { | ||
| 3140 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 3141 | + transform: translate3d(-100%, 0, 0); | ||
| 3142 | + visibility: visible; | ||
| 3143 | + } | ||
| 3144 | + | ||
| 3145 | + to { | ||
| 3146 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3147 | + transform: translate3d(0, 0, 0); | ||
| 3148 | + } | ||
| 3149 | +} | ||
| 3150 | + | ||
| 3151 | +.slideInLeft { | ||
| 3152 | + -webkit-animation-name: slideInLeft; | ||
| 3153 | + animation-name: slideInLeft; | ||
| 3154 | +} | ||
| 3155 | + | ||
| 3156 | +@-webkit-keyframes slideInRight { | ||
| 3157 | + from { | ||
| 3158 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 3159 | + transform: translate3d(100%, 0, 0); | ||
| 3160 | + visibility: visible; | ||
| 3161 | + } | ||
| 3162 | + | ||
| 3163 | + to { | ||
| 3164 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3165 | + transform: translate3d(0, 0, 0); | ||
| 3166 | + } | ||
| 3167 | +} | ||
| 3168 | + | ||
| 3169 | +@keyframes slideInRight { | ||
| 3170 | + from { | ||
| 3171 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 3172 | + transform: translate3d(100%, 0, 0); | ||
| 3173 | + visibility: visible; | ||
| 3174 | + } | ||
| 3175 | + | ||
| 3176 | + to { | ||
| 3177 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3178 | + transform: translate3d(0, 0, 0); | ||
| 3179 | + } | ||
| 3180 | +} | ||
| 3181 | + | ||
| 3182 | +.slideInRight { | ||
| 3183 | + -webkit-animation-name: slideInRight; | ||
| 3184 | + animation-name: slideInRight; | ||
| 3185 | +} | ||
| 3186 | + | ||
| 3187 | +@-webkit-keyframes slideInUp { | ||
| 3188 | + from { | ||
| 3189 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 3190 | + transform: translate3d(0, 100%, 0); | ||
| 3191 | + visibility: visible; | ||
| 3192 | + } | ||
| 3193 | + | ||
| 3194 | + to { | ||
| 3195 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3196 | + transform: translate3d(0, 0, 0); | ||
| 3197 | + } | ||
| 3198 | +} | ||
| 3199 | + | ||
| 3200 | +@keyframes slideInUp { | ||
| 3201 | + from { | ||
| 3202 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 3203 | + transform: translate3d(0, 100%, 0); | ||
| 3204 | + visibility: visible; | ||
| 3205 | + } | ||
| 3206 | + | ||
| 3207 | + to { | ||
| 3208 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3209 | + transform: translate3d(0, 0, 0); | ||
| 3210 | + } | ||
| 3211 | +} | ||
| 3212 | + | ||
| 3213 | +.slideInUp { | ||
| 3214 | + -webkit-animation-name: slideInUp; | ||
| 3215 | + animation-name: slideInUp; | ||
| 3216 | +} | ||
| 3217 | + | ||
| 3218 | +@-webkit-keyframes slideOutDown { | ||
| 3219 | + from { | ||
| 3220 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3221 | + transform: translate3d(0, 0, 0); | ||
| 3222 | + } | ||
| 3223 | + | ||
| 3224 | + to { | ||
| 3225 | + visibility: hidden; | ||
| 3226 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 3227 | + transform: translate3d(0, 100%, 0); | ||
| 3228 | + } | ||
| 3229 | +} | ||
| 3230 | + | ||
| 3231 | +@keyframes slideOutDown { | ||
| 3232 | + from { | ||
| 3233 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3234 | + transform: translate3d(0, 0, 0); | ||
| 3235 | + } | ||
| 3236 | + | ||
| 3237 | + to { | ||
| 3238 | + visibility: hidden; | ||
| 3239 | + -webkit-transform: translate3d(0, 100%, 0); | ||
| 3240 | + transform: translate3d(0, 100%, 0); | ||
| 3241 | + } | ||
| 3242 | +} | ||
| 3243 | + | ||
| 3244 | +.slideOutDown { | ||
| 3245 | + -webkit-animation-name: slideOutDown; | ||
| 3246 | + animation-name: slideOutDown; | ||
| 3247 | +} | ||
| 3248 | + | ||
| 3249 | +@-webkit-keyframes slideOutLeft { | ||
| 3250 | + from { | ||
| 3251 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3252 | + transform: translate3d(0, 0, 0); | ||
| 3253 | + } | ||
| 3254 | + | ||
| 3255 | + to { | ||
| 3256 | + visibility: hidden; | ||
| 3257 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 3258 | + transform: translate3d(-100%, 0, 0); | ||
| 3259 | + } | ||
| 3260 | +} | ||
| 3261 | + | ||
| 3262 | +@keyframes slideOutLeft { | ||
| 3263 | + from { | ||
| 3264 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3265 | + transform: translate3d(0, 0, 0); | ||
| 3266 | + } | ||
| 3267 | + | ||
| 3268 | + to { | ||
| 3269 | + visibility: hidden; | ||
| 3270 | + -webkit-transform: translate3d(-100%, 0, 0); | ||
| 3271 | + transform: translate3d(-100%, 0, 0); | ||
| 3272 | + } | ||
| 3273 | +} | ||
| 3274 | + | ||
| 3275 | +.slideOutLeft { | ||
| 3276 | + -webkit-animation-name: slideOutLeft; | ||
| 3277 | + animation-name: slideOutLeft; | ||
| 3278 | +} | ||
| 3279 | + | ||
| 3280 | +@-webkit-keyframes slideOutRight { | ||
| 3281 | + from { | ||
| 3282 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3283 | + transform: translate3d(0, 0, 0); | ||
| 3284 | + } | ||
| 3285 | + | ||
| 3286 | + to { | ||
| 3287 | + visibility: hidden; | ||
| 3288 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 3289 | + transform: translate3d(100%, 0, 0); | ||
| 3290 | + } | ||
| 3291 | +} | ||
| 3292 | + | ||
| 3293 | +@keyframes slideOutRight { | ||
| 3294 | + from { | ||
| 3295 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3296 | + transform: translate3d(0, 0, 0); | ||
| 3297 | + } | ||
| 3298 | + | ||
| 3299 | + to { | ||
| 3300 | + visibility: hidden; | ||
| 3301 | + -webkit-transform: translate3d(100%, 0, 0); | ||
| 3302 | + transform: translate3d(100%, 0, 0); | ||
| 3303 | + } | ||
| 3304 | +} | ||
| 3305 | + | ||
| 3306 | +.slideOutRight { | ||
| 3307 | + -webkit-animation-name: slideOutRight; | ||
| 3308 | + animation-name: slideOutRight; | ||
| 3309 | +} | ||
| 3310 | + | ||
| 3311 | +@-webkit-keyframes slideOutUp { | ||
| 3312 | + from { | ||
| 3313 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3314 | + transform: translate3d(0, 0, 0); | ||
| 3315 | + } | ||
| 3316 | + | ||
| 3317 | + to { | ||
| 3318 | + visibility: hidden; | ||
| 3319 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 3320 | + transform: translate3d(0, -100%, 0); | ||
| 3321 | + } | ||
| 3322 | +} | ||
| 3323 | + | ||
| 3324 | +@keyframes slideOutUp { | ||
| 3325 | + from { | ||
| 3326 | + -webkit-transform: translate3d(0, 0, 0); | ||
| 3327 | + transform: translate3d(0, 0, 0); | ||
| 3328 | + } | ||
| 3329 | + | ||
| 3330 | + to { | ||
| 3331 | + visibility: hidden; | ||
| 3332 | + -webkit-transform: translate3d(0, -100%, 0); | ||
| 3333 | + transform: translate3d(0, -100%, 0); | ||
| 3334 | + } | ||
| 3335 | +} | ||
| 3336 | + | ||
| 3337 | +.slideOutUp { | ||
| 3338 | + -webkit-animation-name: slideOutUp; | ||
| 3339 | + animation-name: slideOutUp; | ||
| 3340 | +} |
views/css/bootstrap.css
0 → 100644
This diff could not be displayed because it is too large.
views/css/font-awesome.min.css
0 → 100644
| 1 | +/*! | ||
| 2 | + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome | ||
| 3 | + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | ||
| 4 | + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/css/style-demo-picker.css
0 → 100644
| 1 | +body { | ||
| 2 | + overflow-x: hidden; | ||
| 3 | + font-family: 'Lato', sans-serif; | ||
| 4 | + margin: 0px; | ||
| 5 | +} | ||
| 6 | + | ||
| 7 | +.wrapper { | ||
| 8 | + width: 80%; | ||
| 9 | +} | ||
| 10 | + | ||
| 11 | +.back-to-top { | ||
| 12 | + float: right !important; | ||
| 13 | + background: none; | ||
| 14 | + margin: 0; | ||
| 15 | + position: fixed; | ||
| 16 | + bottom: 0; | ||
| 17 | + right: 0; | ||
| 18 | + width: 70px; | ||
| 19 | + height: 70px; | ||
| 20 | + z-index: 300; | ||
| 21 | + display: none; | ||
| 22 | + text-decoration: none; | ||
| 23 | + color: #ffffff; | ||
| 24 | + background-color: #ff9000; | ||
| 25 | +} | ||
| 26 | + | ||
| 27 | +.back-to-top i { | ||
| 28 | + font-size: 60px; | ||
| 29 | +} | ||
| 30 | + | ||
| 31 | +.text-muted { | ||
| 32 | + color: #777 | ||
| 33 | +} | ||
| 34 | + | ||
| 35 | +.text-primary { | ||
| 36 | + color: #266dd2; | ||
| 37 | +} | ||
| 38 | + | ||
| 39 | +p { | ||
| 40 | + font-size: 14px; | ||
| 41 | + line-height: 1.75 | ||
| 42 | +} | ||
| 43 | + | ||
| 44 | +p.large { | ||
| 45 | + font-size: 16px | ||
| 46 | +} | ||
| 47 | + | ||
| 48 | +a, | ||
| 49 | +a:hover, | ||
| 50 | +a:focus, | ||
| 51 | +a:active, | ||
| 52 | +a.active { | ||
| 53 | + outline: 0 | ||
| 54 | +} | ||
| 55 | + | ||
| 56 | +a { | ||
| 57 | + color: #266dd2; | ||
| 58 | +} | ||
| 59 | + | ||
| 60 | +a:hover, | ||
| 61 | +a:focus, | ||
| 62 | +a:active, | ||
| 63 | +a.active { | ||
| 64 | + color: #266dd2; | ||
| 65 | +} | ||
| 66 | + | ||
| 67 | +h1, | ||
| 68 | +h2, | ||
| 69 | +h3, | ||
| 70 | +h4, | ||
| 71 | +h5, | ||
| 72 | +h6 { | ||
| 73 | + font-family: 'Lato', sans-serif; | ||
| 74 | + text-transform: uppercase; | ||
| 75 | + font-weight: 900; | ||
| 76 | +} | ||
| 77 | + | ||
| 78 | +.img-centered { | ||
| 79 | + margin: 0 auto | ||
| 80 | +} | ||
| 81 | + | ||
| 82 | +.bg-light-gray { | ||
| 83 | + background-color: #f7f7f7 | ||
| 84 | +} | ||
| 85 | + | ||
| 86 | +.bg-darkest-gray { | ||
| 87 | + background-color: #222 | ||
| 88 | +} | ||
| 89 | + | ||
| 90 | +.btn-primary { | ||
| 91 | + color: #fff; | ||
| 92 | + background-color: #266dd2; | ||
| 93 | + border-color: #266dd2; | ||
| 94 | + font-family: 'Lato', sans-serif; | ||
| 95 | + text-transform: uppercase; | ||
| 96 | + font-weight: 700 | ||
| 97 | +} | ||
| 98 | + | ||
| 99 | +.btn-primary:hover, | ||
| 100 | +.btn-primary:focus, | ||
| 101 | +.btn-primary:active, | ||
| 102 | +.btn-primary.active, | ||
| 103 | +.open .dropdown-toggle.btn-primary { | ||
| 104 | + color: #fff; | ||
| 105 | + background-color: #fec503; | ||
| 106 | + border-color: #f6bf01 | ||
| 107 | +} | ||
| 108 | + | ||
| 109 | +.btn-primary:active, | ||
| 110 | +.btn-primary.active, | ||
| 111 | +.open .dropdown-toggle.btn-primary { | ||
| 112 | + background-image: none | ||
| 113 | +} | ||
| 114 | + | ||
| 115 | +.btn-primary.disabled, | ||
| 116 | +.btn-primary[disabled], | ||
| 117 | +fieldset[disabled] .btn-primary, | ||
| 118 | +.btn-primary.disabled:hover, | ||
| 119 | +.btn-primary[disabled]:hover, | ||
| 120 | +fieldset[disabled] .btn-primary:hover, | ||
| 121 | +.btn-primary.disabled:focus, | ||
| 122 | +.btn-primary[disabled]:focus, | ||
| 123 | +fieldset[disabled] .btn-primary:focus, | ||
| 124 | +.btn-primary.disabled:active, | ||
| 125 | +.btn-primary[disabled]:active, | ||
| 126 | +fieldset[disabled] .btn-primary:active, | ||
| 127 | +.btn-primary.disabled.active, | ||
| 128 | +.btn-primary[disabled].active, | ||
| 129 | +fieldset[disabled] .btn-primary.active { | ||
| 130 | + background-color: #266dd2; | ||
| 131 | + border-color: #266dd2 | ||
| 132 | +} | ||
| 133 | + | ||
| 134 | +.btn-primary .badge { | ||
| 135 | + color: #266dd2; | ||
| 136 | + background-color: #fff; | ||
| 137 | +} | ||
| 138 | + | ||
| 139 | +.btn-xl { | ||
| 140 | + color: #fff; | ||
| 141 | + background-color: #266dd2; | ||
| 142 | + font-family: 'Lato', sans-serif; | ||
| 143 | + text-transform: uppercase; | ||
| 144 | + font-weight: 700; | ||
| 145 | + border-radius: 0; | ||
| 146 | + font-size: 18px; | ||
| 147 | + padding: 15px 40px; | ||
| 148 | + text-decoration: none; | ||
| 149 | +} | ||
| 150 | + | ||
| 151 | +.btn-xl:hover, | ||
| 152 | +.btn-xl:focus, | ||
| 153 | +.btn-xl:active, | ||
| 154 | +.btn-xl.active, | ||
| 155 | +.open .dropdown-toggle.btn-xl { | ||
| 156 | + color: #fff; | ||
| 157 | + background-color: #48AAF1; | ||
| 158 | + border-color: #48AAF1; | ||
| 159 | + text-decoration: none; | ||
| 160 | +} | ||
| 161 | + | ||
| 162 | +.btn-xl:active, | ||
| 163 | +.btn-xl.active, | ||
| 164 | +.open .dropdown-toggle.btn-xl { | ||
| 165 | + background-image: none | ||
| 166 | +} | ||
| 167 | + | ||
| 168 | +.btn-xl.disabled, | ||
| 169 | +.btn-xl[disabled], | ||
| 170 | +fieldset[disabled] .btn-xl, | ||
| 171 | +.btn-xl.disabled:hover, | ||
| 172 | +.btn-xl[disabled]:hover, | ||
| 173 | +fieldset[disabled] .btn-xl:hover, | ||
| 174 | +.btn-xl.disabled:focus, | ||
| 175 | +.btn-xl[disabled]:focus, | ||
| 176 | +fieldset[disabled] .btn-xl:focus, | ||
| 177 | +.btn-xl.disabled:active, | ||
| 178 | +.btn-xl[disabled]:active, | ||
| 179 | +fieldset[disabled] .btn-xl:active, | ||
| 180 | +.btn-xl.disabled.active, | ||
| 181 | +.btn-xl[disabled].active, | ||
| 182 | +fieldset[disabled] .btn-xl.active { | ||
| 183 | + background-color: #48AAF1; | ||
| 184 | + border-color: #48AAF1; | ||
| 185 | +} | ||
| 186 | + | ||
| 187 | +.btn-xl .badge { | ||
| 188 | + color: #48AAF1; | ||
| 189 | + ; | ||
| 190 | + background-color: #fff | ||
| 191 | +} | ||
| 192 | + | ||
| 193 | +.demo-picker-top { | ||
| 194 | + background-color: #121212; | ||
| 195 | + width: 100%; | ||
| 196 | + height: 300px; | ||
| 197 | +} | ||
| 198 | + | ||
| 199 | +.picker-logo { | ||
| 200 | + width: 450px; | ||
| 201 | + height: 100%; | ||
| 202 | + margin: 0 auto; | ||
| 203 | + padding-top: 80px; | ||
| 204 | +} | ||
| 205 | + | ||
| 206 | +.align-center { | ||
| 207 | + text-align: center; | ||
| 208 | + margin: 0 auto; | ||
| 209 | +} | ||
| 210 | +.choose-demo { | ||
| 211 | + color: #121212; | ||
| 212 | + margin-top: 40px; | ||
| 213 | + font-weight: 200; | ||
| 214 | +} | ||
| 215 | + | ||
| 216 | +.demo-picker { | ||
| 217 | + padding: 0px 2% 0px 2%; | ||
| 218 | + min-height: 500px; | ||
| 219 | + margin: 0 auto; | ||
| 220 | +} | ||
| 221 | + | ||
| 222 | +.picture-demo { | ||
| 223 | + width: 100%; | ||
| 224 | +} | ||
| 225 | + | ||
| 226 | +.picture-demo:hover { | ||
| 227 | + background-color: linear-gradient(to right, #7b4397, #dc2430); | ||
| 228 | + cursor: pointer; | ||
| 229 | + width: 100%; | ||
| 230 | + height: 100%; | ||
| 231 | + transition: all 0.3s; | ||
| 232 | + opacity: 0.8; | ||
| 233 | +} | ||
| 234 | + | ||
| 235 | +img { | ||
| 236 | + width: 100%; | ||
| 237 | +} | ||
| 238 | + | ||
| 239 | +.demo-container { | ||
| 240 | + padding-top: 40px; | ||
| 241 | + width: 100%; | ||
| 242 | + float: left; | ||
| 243 | + position: relative; | ||
| 244 | +} | ||
| 245 | + | ||
| 246 | +.demo { | ||
| 247 | + float: left; | ||
| 248 | + padding: 15px; | ||
| 249 | + height: 100%; | ||
| 250 | +} | ||
| 251 | + | ||
| 252 | +.demo-title { | ||
| 253 | + text-align: center; | ||
| 254 | +} | ||
| 255 | + | ||
| 256 | +.demo-button { | ||
| 257 | + padding-top: 30px; | ||
| 258 | + margin: 0 auto; | ||
| 259 | + width: 100%; | ||
| 260 | + height: 100%; | ||
| 261 | +} | ||
| 262 | + | ||
| 263 | +.footer { | ||
| 264 | + width: 100%; | ||
| 265 | + height: 150px; | ||
| 266 | + float: left; | ||
| 267 | +} | ||
| 268 | + | ||
| 269 | +.border { | ||
| 270 | + width: 60%; | ||
| 271 | + height: 1px; | ||
| 272 | + background-color: #3C3C3C; | ||
| 273 | + margin: 0 auto; | ||
| 274 | +} | ||
| 275 | + | ||
| 276 | +p.copy { | ||
| 277 | + padding-top: 25px; | ||
| 278 | +} | ||
| 279 | + | ||
| 280 | +.copyright { | ||
| 281 | + width: 100%; | ||
| 282 | + font-size: 14px; | ||
| 283 | + color: #3C3C3C; | ||
| 284 | + padding-top: 80px; | ||
| 285 | + position: relative; | ||
| 286 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/css/style.css
0 → 100644
| 1 | +/* | ||
| 2 | + xBe by TEMPLATE STOCK | ||
| 3 | + templatestock.co @templatestock | ||
| 4 | + Released for free under the Creative Commons Attribution 3.0 license (templated.co/license) | ||
| 5 | +/*-------------------------------------------------------------- | ||
| 6 | +>>> TABLE OF CONTENTS: | ||
| 7 | +---------------------------------------------------------------- | ||
| 8 | +1.0 Body CSS + basic theme controls | ||
| 9 | +2.0 Navbar | ||
| 10 | +3.0 Header | ||
| 11 | +4.0 Slider | ||
| 12 | + 4.1 Carousel Animation | ||
| 13 | +5.0 About Us Section | ||
| 14 | +6.0 Services Section | ||
| 15 | +7.0 Team Section | ||
| 16 | +8.0 Portfolio Section | ||
| 17 | + 8.1 Portfolio Modals | ||
| 18 | +9.0 Pricing Section | ||
| 19 | +10.0 Clients Section | ||
| 20 | +11.0 Testimonials Section | ||
| 21 | +12.0 Contact Section | ||
| 22 | +13.0 Footer | ||
| 23 | + 13.1 Scroll to top | ||
| 24 | +---------------------------------------------------------------- | ||
| 25 | + | ||
| 26 | +*/ | ||
| 27 | + | ||
| 28 | +body { | ||
| 29 | + overflow-x: hidden; | ||
| 30 | + font-family: 'Lato', sans-serif; | ||
| 31 | + -webkit-font-smoothing: antialiased; | ||
| 32 | + -moz-osx-font-smoothing: grayscale; | ||
| 33 | + | ||
| 34 | +} | ||
| 35 | + | ||
| 36 | +.wrapper { | ||
| 37 | + width: 80%; | ||
| 38 | +} | ||
| 39 | + | ||
| 40 | +.back-to-top { | ||
| 41 | + float: right !important; | ||
| 42 | + background: none; | ||
| 43 | + margin: 0; | ||
| 44 | + position: fixed; | ||
| 45 | + bottom: 0; | ||
| 46 | + right: 0; | ||
| 47 | + width: 70px; | ||
| 48 | + height: 70px; | ||
| 49 | + z-index: 300; | ||
| 50 | + display: none; | ||
| 51 | + text-decoration: none; | ||
| 52 | + color: #ffffff; | ||
| 53 | + background-color: #ff9000; | ||
| 54 | +} | ||
| 55 | + | ||
| 56 | +.back-to-top i { | ||
| 57 | + font-size: 60px; | ||
| 58 | +} | ||
| 59 | + | ||
| 60 | +.text-muted { | ||
| 61 | + color: #777 | ||
| 62 | +} | ||
| 63 | + | ||
| 64 | +.text-primary { | ||
| 65 | + color: #058BCE; | ||
| 66 | +} | ||
| 67 | + | ||
| 68 | +p { | ||
| 69 | + font-size: 14px; | ||
| 70 | + line-height: 1.75 | ||
| 71 | +} | ||
| 72 | + | ||
| 73 | +p.large { | ||
| 74 | + font-size: 16px | ||
| 75 | +} | ||
| 76 | + | ||
| 77 | +a, | ||
| 78 | +a:hover, | ||
| 79 | +a:focus, | ||
| 80 | +a:active, | ||
| 81 | +a.active { | ||
| 82 | + outline: 0 | ||
| 83 | +} | ||
| 84 | + | ||
| 85 | +a { | ||
| 86 | + color: #058BCE; | ||
| 87 | +} | ||
| 88 | + | ||
| 89 | +a:hover, | ||
| 90 | +a:focus, | ||
| 91 | +a:active, | ||
| 92 | +a.active { | ||
| 93 | + color: #058BCE; | ||
| 94 | +} | ||
| 95 | + | ||
| 96 | +h1, | ||
| 97 | +h2, | ||
| 98 | +h3, | ||
| 99 | +h4, | ||
| 100 | +h5, | ||
| 101 | +h6 { | ||
| 102 | + font-family: "lato"; | ||
| 103 | + text-transform: uppercase; | ||
| 104 | + font-weight: 900; | ||
| 105 | + | ||
| 106 | +} | ||
| 107 | + | ||
| 108 | +.img-centered { | ||
| 109 | + margin: 0 auto; | ||
| 110 | +} | ||
| 111 | + | ||
| 112 | +.bg-light-gray { | ||
| 113 | + background-color: #f7f7f7; | ||
| 114 | +} | ||
| 115 | + | ||
| 116 | +.bg-darkest-gray { | ||
| 117 | + background-color: #222; | ||
| 118 | +} | ||
| 119 | + | ||
| 120 | +.btn-primary { | ||
| 121 | + color: #fff; | ||
| 122 | + background-color: #058BCE; | ||
| 123 | + border-color: #058BCE; | ||
| 124 | + font-family: "lato"; | ||
| 125 | + text-transform: uppercase; | ||
| 126 | + font-weight: 700 | ||
| 127 | +} | ||
| 128 | + | ||
| 129 | +.btn-primary:hover, | ||
| 130 | +.btn-primary:focus, | ||
| 131 | +.btn-primary:active, | ||
| 132 | +.btn-primary.active, | ||
| 133 | +.open .dropdown-toggle.btn-primary { | ||
| 134 | + color: #fff; | ||
| 135 | + background-color: #fec503; | ||
| 136 | + border-color: #f6bf01; | ||
| 137 | +} | ||
| 138 | + | ||
| 139 | +.btn-primary:active, | ||
| 140 | +.btn-primary.active, | ||
| 141 | +.open .dropdown-toggle.btn-primary { | ||
| 142 | + background-image: none; | ||
| 143 | +} | ||
| 144 | + | ||
| 145 | +.btn-primary.disabled, | ||
| 146 | +.btn-primary[disabled], | ||
| 147 | +fieldset[disabled] .btn-primary, | ||
| 148 | +.btn-primary.disabled:hover, | ||
| 149 | +.btn-primary[disabled]:hover, | ||
| 150 | +fieldset[disabled] .btn-primary:hover, | ||
| 151 | +.btn-primary.disabled:focus, | ||
| 152 | +.btn-primary[disabled]:focus, | ||
| 153 | +fieldset[disabled] .btn-primary:focus, | ||
| 154 | +.btn-primary.disabled:active, | ||
| 155 | +.btn-primary[disabled]:active, | ||
| 156 | +fieldset[disabled] .btn-primary:active, | ||
| 157 | +.btn-primary.disabled.active, | ||
| 158 | +.btn-primary[disabled].active, | ||
| 159 | +fieldset[disabled] .btn-primary.active { | ||
| 160 | + background-color: #058BCE; | ||
| 161 | + border-color: #058BCE; | ||
| 162 | +} | ||
| 163 | + | ||
| 164 | +.btn-primary .badge { | ||
| 165 | + color: #058BCE; | ||
| 166 | + background-color: #fff; | ||
| 167 | +} | ||
| 168 | + | ||
| 169 | +.btn-xl { | ||
| 170 | + color: #fff; | ||
| 171 | + background-color: #058BCE; | ||
| 172 | + font-family: "lato"; | ||
| 173 | + text-transform: uppercase; | ||
| 174 | + font-weight: 700; | ||
| 175 | + border-radius: 0; | ||
| 176 | + font-size: 18px; | ||
| 177 | + padding: 15px 40px; | ||
| 178 | +} | ||
| 179 | + | ||
| 180 | +.btn-xl:hover, | ||
| 181 | +.btn-xl:focus, | ||
| 182 | +.btn-xl:active, | ||
| 183 | +.btn-xl.active, | ||
| 184 | +.open .dropdown-toggle.btn-xl { | ||
| 185 | + color: #fff; | ||
| 186 | + background-color: #48AAF1; | ||
| 187 | + border-color: #48AAF1; | ||
| 188 | +} | ||
| 189 | + | ||
| 190 | +.btn-xl:active, | ||
| 191 | +.btn-xl.active, | ||
| 192 | +.open .dropdown-toggle.btn-xl { | ||
| 193 | + background-image: none | ||
| 194 | +} | ||
| 195 | + | ||
| 196 | +.btn-xl.disabled, | ||
| 197 | +.btn-xl[disabled], | ||
| 198 | +fieldset[disabled] .btn-xl, | ||
| 199 | +.btn-xl.disabled:hover, | ||
| 200 | +.btn-xl[disabled]:hover, | ||
| 201 | +fieldset[disabled] .btn-xl:hover, | ||
| 202 | +.btn-xl.disabled:focus, | ||
| 203 | +.btn-xl[disabled]:focus, | ||
| 204 | +fieldset[disabled] .btn-xl:focus, | ||
| 205 | +.btn-xl.disabled:active, | ||
| 206 | +.btn-xl[disabled]:active, | ||
| 207 | +fieldset[disabled] .btn-xl:active, | ||
| 208 | +.btn-xl.disabled.active, | ||
| 209 | +.btn-xl[disabled].active, | ||
| 210 | +fieldset[disabled] .btn-xl.active { | ||
| 211 | + background-color: #48AAF1; | ||
| 212 | + border-color: #48AAF1; | ||
| 213 | +} | ||
| 214 | + | ||
| 215 | +.btn-xl .badge { | ||
| 216 | + color: #48AAF1; | ||
| 217 | + background-color: #fff; | ||
| 218 | +} | ||
| 219 | + | ||
| 220 | +.section-heading, | ||
| 221 | +.section-subheading { | ||
| 222 | + opacity: 0; | ||
| 223 | +} | ||
| 224 | + | ||
| 225 | +@media (max-width:480px) { | ||
| 226 | + .wrapper { | ||
| 227 | + width: 90%; | ||
| 228 | + } | ||
| 229 | +} | ||
| 230 | + | ||
| 231 | + | ||
| 232 | +/* 2.0 ========== NAVBAR =============================================================================*/ | ||
| 233 | + | ||
| 234 | +.top-nav { | ||
| 235 | + width: 95%; | ||
| 236 | +} | ||
| 237 | + | ||
| 238 | +.navbar-default { | ||
| 239 | + background-color: #222; | ||
| 240 | + border-color: transparent; | ||
| 241 | +} | ||
| 242 | + | ||
| 243 | +.nav-buttons { | ||
| 244 | + border-radius: 0px !important; | ||
| 245 | +} | ||
| 246 | + | ||
| 247 | +.navbar-brand { | ||
| 248 | + float: left; | ||
| 249 | + width: 165px; | ||
| 250 | + height: 50px; | ||
| 251 | + padding: 0px !important; | ||
| 252 | +} | ||
| 253 | + | ||
| 254 | +.logo-top { | ||
| 255 | + padding-top: 3px !important; | ||
| 256 | + padding-left: 15px !important; | ||
| 257 | +} | ||
| 258 | + | ||
| 259 | +.navbar-default .navbar-brand:hover, | ||
| 260 | +.navbar-default .navbar-brand:focus, | ||
| 261 | +.navbar-default .navbar-brand:active, | ||
| 262 | +.navbar-default .navbar-brand.active { | ||
| 263 | + color: #fec503; | ||
| 264 | +} | ||
| 265 | + | ||
| 266 | +.navbar-default .navbar-nav > .active > a, | ||
| 267 | +.navbar-default .navbar-nav > .active > a:hover, | ||
| 268 | +.navbar-default .navbar-nav > .active > a:focus { | ||
| 269 | + background-color: transparent !important; | ||
| 270 | + border-bottom: 4px solid #058BCE; | ||
| 271 | +} | ||
| 272 | + | ||
| 273 | +.navbar-default .navbar-toggle { | ||
| 274 | + background-color: #058BCE; | ||
| 275 | +} | ||
| 276 | + | ||
| 277 | +.navbar-default .navbar-toggle .icon-bar { | ||
| 278 | + background-color: #fff; | ||
| 279 | +} | ||
| 280 | + | ||
| 281 | +.navbar-default .navbar-toggle:hover, | ||
| 282 | +.navbar-default .navbar-toggle:focus { | ||
| 283 | + background-color: #48AAF1; | ||
| 284 | +} | ||
| 285 | + | ||
| 286 | +.nav > li > a { | ||
| 287 | + padding: 10px 12px !important; | ||
| 288 | +} | ||
| 289 | + | ||
| 290 | +.navbar-default .nav li a { | ||
| 291 | + font-family: "lato"; | ||
| 292 | + text-transform: uppercase; | ||
| 293 | + font-weight: 300; | ||
| 294 | + color: #fff; | ||
| 295 | +} | ||
| 296 | + | ||
| 297 | +.navbar-default .nav li a:hover, | ||
| 298 | +.navbar-default .nav li a:focus { | ||
| 299 | + color: #058BCE; | ||
| 300 | +} | ||
| 301 | + | ||
| 302 | +.navbar-default .navbar-nav>.active>a { | ||
| 303 | + border-radius: 0; | ||
| 304 | + color: #fff; | ||
| 305 | + background-color: #058BCE; | ||
| 306 | +} | ||
| 307 | + | ||
| 308 | +.navbar-default .navbar-nav>.active>a:hover, | ||
| 309 | +.navbar-default .navbar-nav>.active>a:focus { | ||
| 310 | + color: #fff; | ||
| 311 | + background-color: #058BCE; | ||
| 312 | +} | ||
| 313 | + | ||
| 314 | +.navbar-right { | ||
| 315 | + margin-right: 0px; | ||
| 316 | + margin-top: 6px; | ||
| 317 | +} | ||
| 318 | + | ||
| 319 | +.navbar-toggle { | ||
| 320 | + margin-right: 0px; | ||
| 321 | +} | ||
| 322 | + | ||
| 323 | +.navbar-fixed-top .navbar-collapse, | ||
| 324 | +.navbar-fixed-bottom .navbar-collapse { | ||
| 325 | + max-height: 540px; | ||
| 326 | +} | ||
| 327 | + | ||
| 328 | +@media (min-width:768px) { | ||
| 329 | + .navbar-default { | ||
| 330 | + background-color: transparent; | ||
| 331 | + padding: 12px 0; | ||
| 332 | + -webkit-transition: padding .3s; | ||
| 333 | + -moz-transition: padding .3s; | ||
| 334 | + transition: padding .3s; | ||
| 335 | + border: 0; | ||
| 336 | + } | ||
| 337 | + .navbar-default .navbar-brand { | ||
| 338 | + font-size: 2em; | ||
| 339 | + -webkit-transition: all .3s; | ||
| 340 | + -moz-transition: all .3s; | ||
| 341 | + transition: all .3s; | ||
| 342 | + } | ||
| 343 | + .navbar-default .navbar-nav>.active>a { | ||
| 344 | + border-radius: 0px | ||
| 345 | + } | ||
| 346 | + .navbar-default.navbar-shrink { | ||
| 347 | + background-color: #222; | ||
| 348 | + padding: 0px 0; | ||
| 349 | + box-shadow: 0px 2px 5px #333333; | ||
| 350 | + } | ||
| 351 | + .navbar-default.navbar-shrink .navbar-brand { | ||
| 352 | + font-size: 1.5em; | ||
| 353 | + } | ||
| 354 | +} | ||
| 355 | + | ||
| 356 | +@media (min-width: 768px) and (max-width: 920px) { | ||
| 357 | + .navbar-default { | ||
| 358 | + padding: 5px !important; | ||
| 359 | + } | ||
| 360 | +} | ||
| 361 | + | ||
| 362 | +@media (max-width: 990px) { | ||
| 363 | + .navbar-header { | ||
| 364 | + float: none; | ||
| 365 | + } | ||
| 366 | + .navbar-left, | ||
| 367 | + .navbar-right { | ||
| 368 | + float: none !important; | ||
| 369 | + } | ||
| 370 | + .navbar-toggle { | ||
| 371 | + display: block; | ||
| 372 | + } | ||
| 373 | + .navbar-collapse { | ||
| 374 | + border-top: 1px solid transparent; | ||
| 375 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); | ||
| 376 | + } | ||
| 377 | + .navbar-fixed-top { | ||
| 378 | + top: 0; | ||
| 379 | + border-width: 0 0 1px; | ||
| 380 | + background-color: #222; | ||
| 381 | + } | ||
| 382 | + .navbar-collapse.collapse { | ||
| 383 | + display: none!important; | ||
| 384 | + } | ||
| 385 | + .navbar-nav { | ||
| 386 | + float: none!important; | ||
| 387 | + margin-top: 7.5px; | ||
| 388 | + } | ||
| 389 | + .navbar-nav>li { | ||
| 390 | + float: none; | ||
| 391 | + } | ||
| 392 | + .navbar-nav>li>a { | ||
| 393 | + padding-top: 10px; | ||
| 394 | + padding-bottom: 10px; | ||
| 395 | + } | ||
| 396 | + .collapse.in { | ||
| 397 | + display: block !important; | ||
| 398 | + } | ||
| 399 | +} | ||
| 400 | + | ||
| 401 | + | ||
| 402 | +/* 3.0 ======== HEADER =========*/ | ||
| 403 | + | ||
| 404 | +#header { | ||
| 405 | + position: relative; | ||
| 406 | + color: #fff; | ||
| 407 | + height: 100%; | ||
| 408 | +} | ||
| 409 | + | ||
| 410 | +.intro-text { | ||
| 411 | + padding-bottom: 35px; | ||
| 412 | + text-align: center; | ||
| 413 | +} | ||
| 414 | + | ||
| 415 | +.intro-text .intro-lead-in { | ||
| 416 | + font-family: "lato"; | ||
| 417 | + text-transform: uppercase; | ||
| 418 | + font-weight: 700; | ||
| 419 | + font-size: 20px; | ||
| 420 | + line-height: 80px; | ||
| 421 | + margin-bottom: 45px; | ||
| 422 | +} | ||
| 423 | + | ||
| 424 | +.intro-text .intro-heading { | ||
| 425 | + font-family: 'Droid Serif', serif; | ||
| 426 | + text-transform: uppercase; | ||
| 427 | + font-size: 70px; | ||
| 428 | + line-height: 0px; | ||
| 429 | + margin-bottom: 10px | ||
| 430 | +} | ||
| 431 | + | ||
| 432 | +.intro-text .intro-paragraph { | ||
| 433 | + font-size: 21px; | ||
| 434 | + font-family: "source sans pro", "Droid Serif"; | ||
| 435 | + margin-top: 70px; | ||
| 436 | +} | ||
| 437 | + | ||
| 438 | +@media (max-width: 450px) { | ||
| 439 | + | ||
| 440 | + .intro-text { | ||
| 441 | + padding-bottom: 35px; | ||
| 442 | + text-align: center; | ||
| 443 | +} | ||
| 444 | +} | ||
| 445 | + | ||
| 446 | +/* 4.0 ========== SLIDER ==*/ | ||
| 447 | + | ||
| 448 | +#slider { | ||
| 449 | + margin: 0px !important; | ||
| 450 | + padding: 0px !important; | ||
| 451 | +} | ||
| 452 | + | ||
| 453 | +.slider-button { | ||
| 454 | + border: 2px solid #fff; | ||
| 455 | + background-color: transparent !important; | ||
| 456 | + padding: 8px 40px; | ||
| 457 | +} | ||
| 458 | + | ||
| 459 | +.top li { | ||
| 460 | + color: #fff; | ||
| 461 | + position: absolute; | ||
| 462 | +} | ||
| 463 | + | ||
| 464 | +#myCarousel-one .item, img.slider-image { | ||
| 465 | + background-size: cover; | ||
| 466 | + background-position: center; | ||
| 467 | + background-attachment: fixed; | ||
| 468 | + background-repeat: no-repeat; | ||
| 469 | + width: 100%; | ||
| 470 | + height: 100%; | ||
| 471 | +} | ||
| 472 | + | ||
| 473 | +#myCarousel-one .item:before { | ||
| 474 | + background-color: #000; | ||
| 475 | + content: ""; | ||
| 476 | + height: 100%; | ||
| 477 | + top: 0; | ||
| 478 | + left: 0; | ||
| 479 | + opacity: 0.3; | ||
| 480 | + position: absolute; | ||
| 481 | + width: 100%; | ||
| 482 | +} | ||
| 483 | + | ||
| 484 | +.carousel-caption { | ||
| 485 | + left: 45px; | ||
| 486 | + margin: 0 auto; | ||
| 487 | + right: 45px; | ||
| 488 | + top: 40%; | ||
| 489 | + font-size: 15px; | ||
| 490 | + text-align: center; | ||
| 491 | + color: #fff; | ||
| 492 | + text-shadow: none; | ||
| 493 | +} | ||
| 494 | + | ||
| 495 | +.carousel-caption h1 { | ||
| 496 | + font-size: 46px; | ||
| 497 | + margin-bottom: 0; | ||
| 498 | + line-height: 27px; | ||
| 499 | + letter-spacing: 2px; | ||
| 500 | + font-weight: 100; | ||
| 501 | +} | ||
| 502 | + | ||
| 503 | +.carousel-caption h2 { | ||
| 504 | + font-size: 81px; | ||
| 505 | + font-weight: 600; | ||
| 506 | + margin-top: 0px; | ||
| 507 | + text-transform: lowercase; | ||
| 508 | + letter-spacing: 2px; | ||
| 509 | + margin-bottom: 20px; | ||
| 510 | +} | ||
| 511 | + | ||
| 512 | +.myCarousel-one-left, | ||
| 513 | +.myCarousel-one-right { | ||
| 514 | + color: #000; | ||
| 515 | + font-size: 32px; | ||
| 516 | + height: 40px; | ||
| 517 | + line-height: 40px; | ||
| 518 | + margin-top: -20px; | ||
| 519 | + position: absolute; | ||
| 520 | + text-align: center; | ||
| 521 | + top: 50%; | ||
| 522 | + width: 32px; | ||
| 523 | + z-index: 999; | ||
| 524 | + -webkit-transition: 300ms; | ||
| 525 | + -moz-transition: 300ms; | ||
| 526 | + -o-transition: 300ms; | ||
| 527 | + -ms-transition: 300ms; | ||
| 528 | + transition: 300ms; | ||
| 529 | +} | ||
| 530 | + | ||
| 531 | +.myCarousel-one-left { | ||
| 532 | + left: -100px; | ||
| 533 | +} | ||
| 534 | + | ||
| 535 | +.myCarousel-one-right { | ||
| 536 | + right: -100px; | ||
| 537 | +} | ||
| 538 | + | ||
| 539 | +#myCarousel-one:hover .myCarousel-one-left { | ||
| 540 | + left: 0; | ||
| 541 | +} | ||
| 542 | + | ||
| 543 | +#myCarousel-one:hover .myCarousel-one-right { | ||
| 544 | + right: 0; | ||
| 545 | +} | ||
| 546 | + | ||
| 547 | +video { | ||
| 548 | + display: block; | ||
| 549 | + min-height: 100%; | ||
| 550 | + min-width: 100%; | ||
| 551 | + max-width: none; | ||
| 552 | + height: auto; | ||
| 553 | + width: auto; | ||
| 554 | + position: absolute; | ||
| 555 | + left: 50%; | ||
| 556 | + top: 50%; | ||
| 557 | + bottom: auto; | ||
| 558 | + right: auto; | ||
| 559 | + -webkit-transform: translateX(-50%) translateY(-50%); | ||
| 560 | + -moz-transform: translateX(-50%) translateY(-50%); | ||
| 561 | + -ms-transform: translateX(-50%) translateY(-50%); | ||
| 562 | + -o-transform: translateX(-50%) translateY(-50%); | ||
| 563 | + transform: translateX(-50%) translateY(-50%); | ||
| 564 | +} | ||
| 565 | + | ||
| 566 | + | ||
| 567 | +/* 4.1 ======= Carousel animation =============*/ | ||
| 568 | + | ||
| 569 | + | ||
| 570 | +/* Animation delays */ | ||
| 571 | + | ||
| 572 | +.intro-lead-in { | ||
| 573 | + animation-delay: 0.4s; | ||
| 574 | +} | ||
| 575 | + | ||
| 576 | +.intro-heading { | ||
| 577 | + animation-delay: 0.6s; | ||
| 578 | +} | ||
| 579 | + | ||
| 580 | +.intro-paragraph { | ||
| 581 | + animation-delay: 0.7s; | ||
| 582 | +} | ||
| 583 | + | ||
| 584 | +.slider-button { | ||
| 585 | + animation-delay: 0.4s; | ||
| 586 | +} | ||
| 587 | + | ||
| 588 | +@media (max-width: 1500px){ | ||
| 589 | + | ||
| 590 | +.carousel-caption {top:18%;} | ||
| 591 | +} | ||
| 592 | + | ||
| 593 | +@media (max-width: 1280px){ | ||
| 594 | + | ||
| 595 | +.carousel-caption {top:20%;} | ||
| 596 | +.intro-text .intro-paragraph { | ||
| 597 | + font-size: 15px; | ||
| 598 | + margin-top: 40px; | ||
| 599 | +} | ||
| 600 | +.intro-text .intro-lead-in { | ||
| 601 | + font-size: 60px; | ||
| 602 | + margin-bottom: 20px; | ||
| 603 | +} | ||
| 604 | +.intro-text .intro-heading { | ||
| 605 | + font-size: 20px; | ||
| 606 | + margin-bottom: 10px; | ||
| 607 | +} | ||
| 608 | +.intro-text { | ||
| 609 | + padding-bottom: 15px; | ||
| 610 | +} | ||
| 611 | +} | ||
| 612 | +@media (max-width: 920px){ | ||
| 613 | + | ||
| 614 | +.carousel-caption {top:25%;} | ||
| 615 | +.intro-text .intro-paragraph { | ||
| 616 | + font-size: 12px; | ||
| 617 | + margin-top: 30px; | ||
| 618 | +} | ||
| 619 | +.intro-text .intro-lead-in { | ||
| 620 | + font-size: 20px; | ||
| 621 | + margin-bottom: 10px; | ||
| 622 | +} | ||
| 623 | +.intro-text .intro-heading { | ||
| 624 | + font-size: 30px; | ||
| 625 | + margin-bottom: 10px; | ||
| 626 | +} | ||
| 627 | +.intro-text { | ||
| 628 | + padding-bottom: 10px; | ||
| 629 | +} | ||
| 630 | +} | ||
| 631 | +@media (max-width: 600px){ | ||
| 632 | +.intro-text .intro-lead-in { | ||
| 633 | + font-size: 20px; | ||
| 634 | + margin-bottom: 0px; | ||
| 635 | +} | ||
| 636 | +.carousel-caption .btn { | ||
| 637 | + display: none; | ||
| 638 | +} | ||
| 639 | +} | ||
| 640 | + | ||
| 641 | + | ||
| 642 | +/* 5.0 ======= ABOUT US ===*/ | ||
| 643 | + | ||
| 644 | +section#about { | ||
| 645 | + background-image: url(../img/backgrounds/about.jpg); | ||
| 646 | + padding-bottom: 100px; | ||
| 647 | + background-position: center; | ||
| 648 | + background-repeat: no-repeat; | ||
| 649 | + min-height: 780px; | ||
| 650 | + background-color: #FEFEFE; | ||
| 651 | +} | ||
| 652 | + | ||
| 653 | +.about-button { | ||
| 654 | + margin-top: 50px; | ||
| 655 | + margin-bottom: 50px; | ||
| 656 | +} | ||
| 657 | + | ||
| 658 | + | ||
| 659 | +/* 6.0 ======== SERVICES ====*/ | ||
| 660 | + | ||
| 661 | +section { | ||
| 662 | + padding: 40px 0 | ||
| 663 | +} | ||
| 664 | + | ||
| 665 | +section#services { | ||
| 666 | + background-image: url(../img/backgrounds/services-bg.jpg); | ||
| 667 | + background-position: center; | ||
| 668 | + background-size: cover; | ||
| 669 | +} | ||
| 670 | +.service {padding: 0px 45px;} | ||
| 671 | + | ||
| 672 | +.service-heading { | ||
| 673 | + margin: 25px 0px 15px 0px; | ||
| 674 | + text-transform: none; | ||
| 675 | + color: #fff; | ||
| 676 | + font-weight: 300; | ||
| 677 | + font-size: 18px; | ||
| 678 | + | ||
| 679 | +} | ||
| 680 | + | ||
| 681 | +section#services .section-subheading { | ||
| 682 | + color: #fff !important; | ||
| 683 | +} | ||
| 684 | + | ||
| 685 | +section h2.section-heading { | ||
| 686 | + font-size: 40px; | ||
| 687 | + margin-top: 0; | ||
| 688 | + text-align: center; | ||
| 689 | + text-transform: uppercase !important; | ||
| 690 | + color: #058BCE; | ||
| 691 | + | ||
| 692 | +} | ||
| 693 | + | ||
| 694 | +section h3.section-subheading { | ||
| 695 | + font-size: 18px; | ||
| 696 | + line-height: 26px; | ||
| 697 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 698 | + text-transform: none; | ||
| 699 | + text-align: center; | ||
| 700 | + font-weight: 400; | ||
| 701 | + margin-bottom: 47px; | ||
| 702 | + margin-top: 20px !important; | ||
| 703 | + color: #222222; | ||
| 704 | +} | ||
| 705 | + | ||
| 706 | +.text-services { | ||
| 707 | + text-transform: none; | ||
| 708 | + color: #fff; | ||
| 709 | + font-weight: 400; | ||
| 710 | + line-height: 22px; | ||
| 711 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 712 | + font-size: 13px; | ||
| 713 | + padding-bottom: 20px; | ||
| 714 | +} | ||
| 715 | + | ||
| 716 | +.first-services { | ||
| 717 | + padding: 45px 0px 5px 0px; | ||
| 718 | +} | ||
| 719 | +.second-services { padding: 15px 0px 5px 0px;} | ||
| 720 | + | ||
| 721 | +#services i.fa { | ||
| 722 | + font-size: 38px; | ||
| 723 | + /* border: 4px solid; */ | ||
| 724 | + background: #058BCE; | ||
| 725 | + width: 80px; | ||
| 726 | + height: 80px; | ||
| 727 | + padding: 22px 17px; | ||
| 728 | + border-radius: 50%; | ||
| 729 | + transition: all 0.2s; | ||
| 730 | +} | ||
| 731 | + | ||
| 732 | +.fa:before { | ||
| 733 | + color: #fff; | ||
| 734 | +} | ||
| 735 | + | ||
| 736 | +.service i.fa:hover { | ||
| 737 | + box-shadow: 0px 0px 6px #fff; | ||
| 738 | +} | ||
| 739 | + | ||
| 740 | +@media (min-width:768px) { | ||
| 741 | + section { | ||
| 742 | + padding: 80px 0 | ||
| 743 | + } | ||
| 744 | +} | ||
| 745 | + | ||
| 746 | +@media (max-width:480px) { | ||
| 747 | + section h2.section-heading { | ||
| 748 | + font-size: 43px; | ||
| 749 | + margin-top: 0; | ||
| 750 | + text-align: center; | ||
| 751 | + text-transform: uppercase !important; | ||
| 752 | + color: #058BCE; | ||
| 753 | + } | ||
| 754 | + section h3.section-subheading { | ||
| 755 | + font-size: 14px; | ||
| 756 | + line-height: 26px; | ||
| 757 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 758 | + text-transform: none; | ||
| 759 | + text-align: center; | ||
| 760 | + font-weight: 400; | ||
| 761 | + margin-bottom: 47px; | ||
| 762 | + margin-top: 15px !important; | ||
| 763 | + color: #000; | ||
| 764 | + } | ||
| 765 | +} | ||
| 766 | + | ||
| 767 | + | ||
| 768 | +/* 7.0 ====== TEAM =============*/ | ||
| 769 | + | ||
| 770 | + | ||
| 771 | +/* Team members images are set within the HTML using inline CSS, not here */ | ||
| 772 | + | ||
| 773 | +section#team { | ||
| 774 | + background-color: #FEFEFE; | ||
| 775 | + padding-bottom: 0px !important; | ||
| 776 | +} | ||
| 777 | + | ||
| 778 | +.carousel { | ||
| 779 | + height: 100%; | ||
| 780 | +} | ||
| 781 | + | ||
| 782 | +.item, | ||
| 783 | +.active, | ||
| 784 | +.carousel-inner { | ||
| 785 | + height: 100%; | ||
| 786 | +} | ||
| 787 | + | ||
| 788 | +.carousel-control.right { | ||
| 789 | + background-image: none !important; | ||
| 790 | +} | ||
| 791 | + | ||
| 792 | +.carousel-control.left { | ||
| 793 | + background-image: none !important; | ||
| 794 | + text-align: center; | ||
| 795 | +} | ||
| 796 | + | ||
| 797 | +.carousel-control { | ||
| 798 | + position: absolute; | ||
| 799 | + width: 1%; | ||
| 800 | + font-size: 10px !important; | ||
| 801 | + color: #222222 !important; | ||
| 802 | + text-align: center; | ||
| 803 | + opacity: 1 !important; | ||
| 804 | +} | ||
| 805 | + | ||
| 806 | +.carousel-indicators li { | ||
| 807 | + border: 1px solid #222222; | ||
| 808 | + border-radius: 12px; | ||
| 809 | + width: 12px; | ||
| 810 | + height: 12px; | ||
| 811 | + margin: 2px; | ||
| 812 | +} | ||
| 813 | + | ||
| 814 | +.carousel-indicators .active { | ||
| 815 | + width: 15px; | ||
| 816 | + height: 15px; | ||
| 817 | + margin: 0; | ||
| 818 | + background-color: #222222; | ||
| 819 | +} | ||
| 820 | + | ||
| 821 | +.carousel-control .glyphicon-chevron-right { | ||
| 822 | + margin-right: 45px; | ||
| 823 | +} | ||
| 824 | + | ||
| 825 | +.glyphicon-chevron-right:before { | ||
| 826 | + content: "\e080"; | ||
| 827 | + font-size: 20px; | ||
| 828 | +} | ||
| 829 | + | ||
| 830 | +.glyphicon-chevron-left:before { | ||
| 831 | + content: "\e079"; | ||
| 832 | + font-size: 20px; | ||
| 833 | +} | ||
| 834 | + | ||
| 835 | +.carousel-control .glyphicon-chevron-left, | ||
| 836 | +.carousel-control .glyphicon-chevron-right, | ||
| 837 | +.carousel-control .icon-next, | ||
| 838 | +.carousel-control .icon-prev { | ||
| 839 | + top: 35%; | ||
| 840 | +} | ||
| 841 | + | ||
| 842 | +.team-wrapper { | ||
| 843 | + width: 90%; | ||
| 844 | +} | ||
| 845 | + | ||
| 846 | +.team-member-bio { | ||
| 847 | + padding-top: 7%; | ||
| 848 | + padding-right: 20px; | ||
| 849 | +} | ||
| 850 | + | ||
| 851 | +.team-member-name { | ||
| 852 | + font-size: 35px; | ||
| 853 | + color: #222222; | ||
| 854 | +} | ||
| 855 | + | ||
| 856 | +.team-text-short { | ||
| 857 | + font-size: 15px; | ||
| 858 | + line-height: 21px; | ||
| 859 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 860 | + font-weight: 500; | ||
| 861 | +} | ||
| 862 | + | ||
| 863 | +.team-member { | ||
| 864 | + text-align: center; | ||
| 865 | + height: 500px; | ||
| 866 | +} | ||
| 867 | + | ||
| 868 | +.team-member h4 { | ||
| 869 | + margin-top: 25px; | ||
| 870 | + margin-bottom: 0; | ||
| 871 | + text-transform: none | ||
| 872 | +} | ||
| 873 | + | ||
| 874 | +.team-member p { | ||
| 875 | + margin-top: 0 | ||
| 876 | +} | ||
| 877 | + | ||
| 878 | +.bio { | ||
| 879 | + font-family: "source sans pro" | ||
| 880 | +} | ||
| 881 | + | ||
| 882 | +.social-buttons { | ||
| 883 | + text-align: center; | ||
| 884 | + float: left; | ||
| 885 | + padding-top: 15px; | ||
| 886 | +} | ||
| 887 | + | ||
| 888 | +.text-muted-role { | ||
| 889 | + font-size: 22px; | ||
| 890 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 891 | + color: #058BCE; | ||
| 892 | +} | ||
| 893 | + | ||
| 894 | +.carousel-indicators { | ||
| 895 | + bottom: 20px; | ||
| 896 | +} | ||
| 897 | + | ||
| 898 | +.carousel-inner { | ||
| 899 | + margin: 0 auto; | ||
| 900 | +} | ||
| 901 | + | ||
| 902 | +.team-member img { | ||
| 903 | + position: absolute; | ||
| 904 | + margin: 0 auto; | ||
| 905 | + float: left; | ||
| 906 | + left: 11%; | ||
| 907 | +} | ||
| 908 | +@media (max-width:450px) { | ||
| 909 | +.carousel-indicators { | ||
| 910 | + bottom: 0px; | ||
| 911 | +} | ||
| 912 | +.team-member img { | ||
| 913 | + width: 100%; | ||
| 914 | +} | ||
| 915 | +.team-member-name { | ||
| 916 | + font-size: 25px; | ||
| 917 | +} | ||
| 918 | +.text-muted-role { | ||
| 919 | + font-size: 19px; | ||
| 920 | +} | ||
| 921 | +.team-text-short { | ||
| 922 | + font-size: 13px; | ||
| 923 | + line-height: 19px; | ||
| 924 | +} | ||
| 925 | +.team-member { | ||
| 926 | + height: 460px; | ||
| 927 | +} | ||
| 928 | +.team-member-bio {padding-top: 0% !important;} | ||
| 929 | +.social-buttons {padding-top:0px;} | ||
| 930 | + | ||
| 931 | +} | ||
| 932 | + | ||
| 933 | +@media (max-width:989px) { | ||
| 934 | + .team-member { | ||
| 935 | + text-align: center; | ||
| 936 | + margin-bottom: 0px; | ||
| 937 | + width: 100%; | ||
| 938 | + } | ||
| 939 | + .team-member img { | ||
| 940 | + margin: 0 auto; | ||
| 941 | + opacity: 0.4; | ||
| 942 | + left: 0%; | ||
| 943 | + } | ||
| 944 | + .team-member-bio { | ||
| 945 | + position: absolute; | ||
| 946 | + text-align: center !important; | ||
| 947 | + width: 100%; | ||
| 948 | + padding-bottom: 0%; | ||
| 949 | + padding-top: 25%; | ||
| 950 | + } | ||
| 951 | + .social-buttons { | ||
| 952 | + padding-left: 0px; | ||
| 953 | + margin: 0 auto; | ||
| 954 | + float: none !important; | ||
| 955 | + } | ||
| 956 | + .team-member img { | ||
| 957 | + opacity: 0.4; | ||
| 958 | + float: none; | ||
| 959 | + position: relative; | ||
| 960 | + } | ||
| 961 | + .social-buttons { | ||
| 962 | + float: none; | ||
| 963 | + } | ||
| 964 | + .carousel-indicators { | ||
| 965 | + bottom: -10px; | ||
| 966 | +} | ||
| 967 | + .glyphicon-chevron-right:before { | ||
| 968 | + content: "\e080"; | ||
| 969 | + font-size: 20px; | ||
| 970 | + } | ||
| 971 | + .glyphicon-chevron-left:before { | ||
| 972 | + content: "\e079"; | ||
| 973 | + font-size: 20px; | ||
| 974 | + } | ||
| 975 | + .carousel-control .glyphicon-chevron-left, | ||
| 976 | + .carousel-control .glyphicon-chevron-right, | ||
| 977 | + .carousel-control .icon-next, | ||
| 978 | + .carousel-control .icon-prev { | ||
| 979 | + top: 30%; | ||
| 980 | + } | ||
| 981 | + .carousel-control .glyphicon-chevron-right { | ||
| 982 | + margin-right: 0px; | ||
| 983 | + } | ||
| 984 | +} | ||
| 985 | + | ||
| 986 | +@media (min-width:990px) and (max-width:1280px) { | ||
| 987 | + .team-member-bio { | ||
| 988 | + width: 65%; | ||
| 989 | + float: right; | ||
| 990 | + } | ||
| 991 | + .social-buttons { | ||
| 992 | + padding-left: 0px; | ||
| 993 | + margin: 0 auto; | ||
| 994 | + float: left; | ||
| 995 | + } | ||
| 996 | + .team-member img { | ||
| 997 | + width: 100%; | ||
| 998 | + padding-top: 50px; | ||
| 999 | + } | ||
| 1000 | +} | ||
| 1001 | + | ||
| 1002 | + | ||
| 1003 | +/* 8.0 ========== PORTFOLIO ============*/ | ||
| 1004 | + | ||
| 1005 | +section#portfolio { | ||
| 1006 | + background-color: #ececec; | ||
| 1007 | + padding-bottom: 110px; | ||
| 1008 | +} | ||
| 1009 | + | ||
| 1010 | +.img-responsive { | ||
| 1011 | + width: 100%; | ||
| 1012 | +} | ||
| 1013 | + | ||
| 1014 | +.portfolio-items { | ||
| 1015 | + padding: 0px !important; | ||
| 1016 | +} | ||
| 1017 | + | ||
| 1018 | +.isotope-item { | ||
| 1019 | + z-index: 2 | ||
| 1020 | +} | ||
| 1021 | + | ||
| 1022 | +.isotope-hidden.isotope-item { | ||
| 1023 | + z-index: 1 | ||
| 1024 | +} | ||
| 1025 | + | ||
| 1026 | +.isotope, | ||
| 1027 | +.isotope .isotope-item { | ||
| 1028 | + /* change duration value to whatever you like */ | ||
| 1029 | + -webkit-transition-duration: 0.8s; | ||
| 1030 | + -moz-transition-duration: 0.8s; | ||
| 1031 | + transition-duration: 0.8s; | ||
| 1032 | +} | ||
| 1033 | + | ||
| 1034 | +.isotope-item { | ||
| 1035 | + padding: 0px; | ||
| 1036 | + margin-right: -1px; | ||
| 1037 | + -webkit-backface-visibility: hidden; | ||
| 1038 | + backface-visibility: hidden; | ||
| 1039 | +} | ||
| 1040 | + | ||
| 1041 | +.isotope { | ||
| 1042 | + -webkit-backface-visibility: hidden; | ||
| 1043 | + backface-visibility: hidden; | ||
| 1044 | + -webkit-transition-property: height, width; | ||
| 1045 | + -moz-transition-property: height, width; | ||
| 1046 | + transition-property: height, width; | ||
| 1047 | +} | ||
| 1048 | + | ||
| 1049 | +.isotope .isotope-item { | ||
| 1050 | + -webkit-backface-visibility: hidden; | ||
| 1051 | + backface-visibility: hidden; | ||
| 1052 | + -webkit-transition-property: -webkit-transform, opacity; | ||
| 1053 | + -moz-transition-property: -moz-transform, opacity; | ||
| 1054 | + transition-property: transform, opacity; | ||
| 1055 | +} | ||
| 1056 | + | ||
| 1057 | +.portfolio-item { | ||
| 1058 | + margin-bottom: 0px; | ||
| 1059 | + height: 100%; | ||
| 1060 | + width: 100%; | ||
| 1061 | +} | ||
| 1062 | + | ||
| 1063 | +.portfolio-item .hover-bg { | ||
| 1064 | + height: 100%; | ||
| 1065 | + overflow: hidden; | ||
| 1066 | + position: relative; | ||
| 1067 | +} | ||
| 1068 | + | ||
| 1069 | +.portfolio-item:hover { | ||
| 1070 | + background-color: #fff; | ||
| 1071 | + z-index: 9999; | ||
| 1072 | +} | ||
| 1073 | + | ||
| 1074 | +.hover-bg .hover-text { | ||
| 1075 | + position: absolute; | ||
| 1076 | + text-align: center; | ||
| 1077 | + margin: 0 auto; | ||
| 1078 | + color: #ffffff; | ||
| 1079 | + background: linear-gradient(to right, #7b4397, #dc2430); | ||
| 1080 | + padding: 25% 0; | ||
| 1081 | + height: 100%; | ||
| 1082 | + width: 100%; | ||
| 1083 | + opacity: 0; | ||
| 1084 | + transition: all 0.5s; | ||
| 1085 | +} | ||
| 1086 | + | ||
| 1087 | +.hover-bg .hover-text>h4 { | ||
| 1088 | + opacity: 0; | ||
| 1089 | + -webkit-transform: translateY(100%); | ||
| 1090 | + transform: translateY(100%); | ||
| 1091 | + transition: all 0.3s; | ||
| 1092 | + font-size: 35px; | ||
| 1093 | +} | ||
| 1094 | + | ||
| 1095 | +.hover-bg:hover .hover-text>h4 { | ||
| 1096 | + opacity: 1; | ||
| 1097 | + -webkit-backface-visibility: hidden; | ||
| 1098 | + -webkit-transform: translateY(0); | ||
| 1099 | + transform: translateY(0); | ||
| 1100 | +} | ||
| 1101 | + | ||
| 1102 | +.hover-bg .hover-text>i { | ||
| 1103 | + opacity: 0; | ||
| 1104 | + -webkit-transform: translateY(0); | ||
| 1105 | + transform: translateY(0); | ||
| 1106 | + transition: all 0.3s; | ||
| 1107 | +} | ||
| 1108 | + | ||
| 1109 | +.hover-bg:hover .hover-text>i { | ||
| 1110 | + opacity: 1; | ||
| 1111 | + -webkit-backface-visibility: hidden; | ||
| 1112 | + -webkit-transform: translateY(100%); | ||
| 1113 | + transform: translateY(100%); | ||
| 1114 | +} | ||
| 1115 | + | ||
| 1116 | +.hover-bg:hover .hover-text { | ||
| 1117 | + opacity: 1; | ||
| 1118 | +} | ||
| 1119 | + | ||
| 1120 | +.portfolio-wrapper ul.filter { | ||
| 1121 | + list-style: none; | ||
| 1122 | + padding: 0; | ||
| 1123 | + margin-bottom: 35px; | ||
| 1124 | + margin-top: 28px; | ||
| 1125 | + overflow: hidden; | ||
| 1126 | +} | ||
| 1127 | + | ||
| 1128 | +.portfolio-wrapper ul.filter li { | ||
| 1129 | + float: left; | ||
| 1130 | + text-transform: uppercase; | ||
| 1131 | + margin-right: 25px; | ||
| 1132 | + font-weight: 600; | ||
| 1133 | +} | ||
| 1134 | + | ||
| 1135 | +.portfolio-wrapper ul.filter li a { | ||
| 1136 | + color: #909090; | ||
| 1137 | +} | ||
| 1138 | + | ||
| 1139 | +.portfolio-wrapper ul.filter li a:hover, | ||
| 1140 | +.portfolio-wrapper ul.filter li a.active { | ||
| 1141 | + color: #000; | ||
| 1142 | +} | ||
| 1143 | + | ||
| 1144 | +.portfolio-wrapper .portfolio-items { | ||
| 1145 | + clear: both; | ||
| 1146 | +} | ||
| 1147 | + | ||
| 1148 | +.portfolio-wrapper .portfolio-content { | ||
| 1149 | + position: relative; | ||
| 1150 | +} | ||
| 1151 | + | ||
| 1152 | +.portfolio-wrapper .overlay-content { | ||
| 1153 | + position: absolute; | ||
| 1154 | + bottom: 0; | ||
| 1155 | + padding: 40px 35px; | ||
| 1156 | +} | ||
| 1157 | + | ||
| 1158 | +.portfolio-wrapper .overlay-subheading { | ||
| 1159 | + font-family: 'Droid Serif', serif; | ||
| 1160 | + text-transform: uppercase; | ||
| 1161 | + | ||
| 1162 | + font-size: 18px; | ||
| 1163 | +} | ||
| 1164 | + | ||
| 1165 | +.portfolio-wrapper .portfolio-overlay { | ||
| 1166 | + position: absolute; | ||
| 1167 | + background-color: rgba(0, 0, 0, 0.7); | ||
| 1168 | + color: #fff; | ||
| 1169 | + left: 0; | ||
| 1170 | + bottom: 0; | ||
| 1171 | + width: 100%; | ||
| 1172 | + height: 100%; | ||
| 1173 | + padding: 30px; | ||
| 1174 | + opacity: 0; | ||
| 1175 | + -webkit-transition: all 0.3s ease-out 0s; | ||
| 1176 | + -moz-transition: all 0.3s ease-out 0s; | ||
| 1177 | + -ms-transition: all 0.3s ease-out 0s; | ||
| 1178 | + -o-transition: all 0.3s ease-out 0s; | ||
| 1179 | + transition: all 0.3s ease-out 0s; | ||
| 1180 | + -moz-transform: scale(0.5); | ||
| 1181 | + -webkit-transform: scale(0.5); | ||
| 1182 | + -o-transform: scale(0.5); | ||
| 1183 | + -ms-transform: scale(0.5); | ||
| 1184 | + transform: scale(0.5); | ||
| 1185 | +} | ||
| 1186 | + | ||
| 1187 | +.portfolio-wrapper .portfolio-content:hover .portfolio-overlay { | ||
| 1188 | + opacity: 1; | ||
| 1189 | + -moz-transform: scale(1); | ||
| 1190 | + -webkit-transform: scale(1); | ||
| 1191 | + -o-transform: scale(1); | ||
| 1192 | + -ms-transform: scale(1); | ||
| 1193 | + transform: scale(1); | ||
| 1194 | +} | ||
| 1195 | + | ||
| 1196 | +.portfolio-wrapper .portfolio-overlay a { | ||
| 1197 | + color: #fff; | ||
| 1198 | + font-size: 35px; | ||
| 1199 | +} | ||
| 1200 | + | ||
| 1201 | +.portfolio-wrapper .portfolio-overlay a:hover { | ||
| 1202 | + color: #fff; | ||
| 1203 | +} | ||
| 1204 | + | ||
| 1205 | +.portfolio-container-fluid { | ||
| 1206 | + padding-right: 0px; | ||
| 1207 | + padding-left: 0px; | ||
| 1208 | + margin-right: auto; | ||
| 1209 | + margin-left: auto; | ||
| 1210 | +} | ||
| 1211 | + | ||
| 1212 | +ul.filter { | ||
| 1213 | + padding: 15px 0px; | ||
| 1214 | +} | ||
| 1215 | + | ||
| 1216 | +ul.filter li { | ||
| 1217 | + display: inline-block; | ||
| 1218 | + padding: 17px 2px; | ||
| 1219 | +} | ||
| 1220 | + | ||
| 1221 | +ul.filter li a { | ||
| 1222 | + padding: 15px 25px; | ||
| 1223 | + border-radius: 0; | ||
| 1224 | + background-color: #058BCE; | ||
| 1225 | + color: #fff; | ||
| 1226 | + text-transform: uppercase; | ||
| 1227 | + text-decoration: none; | ||
| 1228 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1229 | + font-weight: 500; | ||
| 1230 | +} | ||
| 1231 | + | ||
| 1232 | +ul.filter li a:hover { | ||
| 1233 | + background-color: #48AAF1; | ||
| 1234 | +} | ||
| 1235 | + | ||
| 1236 | + | ||
| 1237 | +/* 8.1 ==================== Portfolio modals ================ */ | ||
| 1238 | + | ||
| 1239 | +.btn:focus, | ||
| 1240 | +.btn:active, | ||
| 1241 | +.btn.active, | ||
| 1242 | +.btn:active:focus { | ||
| 1243 | + outline: 0 | ||
| 1244 | +} | ||
| 1245 | + | ||
| 1246 | +.portfolio-modal .modal-content { | ||
| 1247 | + border-radius: 0; | ||
| 1248 | + background-clip: border-box; | ||
| 1249 | + -webkit-box-shadow: none; | ||
| 1250 | + box-shadow: none; | ||
| 1251 | + border: 0; | ||
| 1252 | + min-height: 100%; | ||
| 1253 | + padding: 100px 0; | ||
| 1254 | + text-align: center | ||
| 1255 | +} | ||
| 1256 | + | ||
| 1257 | +.portfolio-modal .modal-content h2 { | ||
| 1258 | + margin-bottom: 15px; | ||
| 1259 | + font-size: 3em | ||
| 1260 | +} | ||
| 1261 | + | ||
| 1262 | +.portfolio-modal .modal-content p { | ||
| 1263 | + margin-bottom: 30px; | ||
| 1264 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1265 | +} | ||
| 1266 | + | ||
| 1267 | +.portfolio-modal .modal-content p.item-intro { | ||
| 1268 | + margin: 20px 0 30px; | ||
| 1269 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1270 | + font-size: 17px; | ||
| 1271 | +} | ||
| 1272 | + | ||
| 1273 | +.portfolio-modal .modal-content ul.list-inline { | ||
| 1274 | + margin-bottom: 30px; | ||
| 1275 | + margin-top: 0; | ||
| 1276 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1277 | + font-size: 14px; | ||
| 1278 | + font-weight: 400; | ||
| 1279 | +} | ||
| 1280 | + | ||
| 1281 | +.portfolio-modal .modal-content img { | ||
| 1282 | + margin-bottom: 30px | ||
| 1283 | +} | ||
| 1284 | + | ||
| 1285 | +.portfolio-modal .close-modal { | ||
| 1286 | + position: absolute; | ||
| 1287 | + width: 75px; | ||
| 1288 | + height: 75px; | ||
| 1289 | + background-color: transparent; | ||
| 1290 | + top: 25px; | ||
| 1291 | + right: 25px; | ||
| 1292 | + cursor: pointer | ||
| 1293 | +} | ||
| 1294 | + | ||
| 1295 | +.portfolio-modal .close-modal:hover { | ||
| 1296 | + opacity: .3 | ||
| 1297 | +} | ||
| 1298 | + | ||
| 1299 | +.portfolio-modal .close-modal .lr { | ||
| 1300 | + height: 75px; | ||
| 1301 | + width: 1px; | ||
| 1302 | + margin-left: 35px; | ||
| 1303 | + background-color: #222; | ||
| 1304 | + transform: rotate(45deg); | ||
| 1305 | + -ms-transform: rotate(45deg); | ||
| 1306 | + -webkit-transform: rotate(45deg); | ||
| 1307 | + z-index: 1051 | ||
| 1308 | +} | ||
| 1309 | + | ||
| 1310 | +.portfolio-modal .close-modal .lr .rl { | ||
| 1311 | + height: 75px; | ||
| 1312 | + width: 1px; | ||
| 1313 | + background-color: #222; | ||
| 1314 | + transform: rotate(90deg); | ||
| 1315 | + -ms-transform: rotate(90deg); | ||
| 1316 | + -webkit-transform: rotate(90deg); | ||
| 1317 | + z-index: 1052 | ||
| 1318 | +} | ||
| 1319 | + | ||
| 1320 | +.portfolio-modal .modal-backdrop { | ||
| 1321 | + opacity: 0; | ||
| 1322 | + display: none | ||
| 1323 | +} | ||
| 1324 | + | ||
| 1325 | +::-moz-selection { | ||
| 1326 | + text-shadow: none; | ||
| 1327 | + background: #fed136 | ||
| 1328 | +} | ||
| 1329 | + | ||
| 1330 | +::selection { | ||
| 1331 | + text-shadow: none; | ||
| 1332 | + background: #fed136 | ||
| 1333 | +} | ||
| 1334 | + | ||
| 1335 | +img::selection { | ||
| 1336 | + background: 0 0 | ||
| 1337 | +} | ||
| 1338 | + | ||
| 1339 | +img::-moz-selection { | ||
| 1340 | + background: 0 0 | ||
| 1341 | +} | ||
| 1342 | + | ||
| 1343 | +body { | ||
| 1344 | + webkit-tap-highlight-color: #fed136 | ||
| 1345 | +} | ||
| 1346 | + | ||
| 1347 | + | ||
| 1348 | +/* 9.0 ============ PRICING = */ | ||
| 1349 | + | ||
| 1350 | +#pricing { | ||
| 1351 | + background-color: #FEFEFE; | ||
| 1352 | + padding-bottom: 120px; | ||
| 1353 | +} | ||
| 1354 | + | ||
| 1355 | +.pricing-title { | ||
| 1356 | + font-size: 40px; | ||
| 1357 | + color: #fff; | ||
| 1358 | + font-weight: 300; | ||
| 1359 | + margin: 0px !important; | ||
| 1360 | + padding: 25px 0px 10px 0px; | ||
| 1361 | +} | ||
| 1362 | + | ||
| 1363 | +.price { | ||
| 1364 | + margin-top: 0; | ||
| 1365 | + padding: 0 15px 15px 15px; | ||
| 1366 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1367 | + font-weight: 300; | ||
| 1368 | + font-size: 45px; | ||
| 1369 | + color: #fff; | ||
| 1370 | +} | ||
| 1371 | + | ||
| 1372 | +.pricing { | ||
| 1373 | + background-color: #f7f7f7; | ||
| 1374 | + margin-top: 30px; | ||
| 1375 | + -webkit-transition: all 0.2s ease-in-out; | ||
| 1376 | + -moz-transition: all 0.2s ease-in-out; | ||
| 1377 | + -ms-transition: all 0.2s ease-in-out; | ||
| 1378 | + -o-transition: all 0.2s ease-in-out; | ||
| 1379 | + transition: all 0.2s ease-in-out; | ||
| 1380 | + box-sizing: content-box; | ||
| 1381 | +} | ||
| 1382 | + | ||
| 1383 | +.pricing:hover { | ||
| 1384 | + box-shadow: 0px 0px 18px #ddd; | ||
| 1385 | +} | ||
| 1386 | + | ||
| 1387 | +.pricing h5 { | ||
| 1388 | + margin-top: 0; | ||
| 1389 | + padding: 25px 0px 10px 0px; | ||
| 1390 | +} | ||
| 1391 | + | ||
| 1392 | +.pricing .border { | ||
| 1393 | + width: 100%; | ||
| 1394 | + margin-bottom: 15px; | ||
| 1395 | + background-color: #058BCE; | ||
| 1396 | + height: 2px; | ||
| 1397 | +} | ||
| 1398 | + | ||
| 1399 | +.pricing ul { | ||
| 1400 | + list-style: none; | ||
| 1401 | + padding: 0; | ||
| 1402 | +} | ||
| 1403 | + | ||
| 1404 | +.pricing ul li { | ||
| 1405 | + padding: 8px 0; | ||
| 1406 | + font-size: 15px; | ||
| 1407 | + font-family: "source sans pro" | ||
| 1408 | +} | ||
| 1409 | + | ||
| 1410 | +.pricing a.btn-send { | ||
| 1411 | + text-transform: uppercase; | ||
| 1412 | + margin-bottom: 20px; | ||
| 1413 | + padding: 15px 60px; | ||
| 1414 | + background-color: #058BCE; | ||
| 1415 | + border-radius: 0; | ||
| 1416 | + color: #fff; | ||
| 1417 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1418 | + font-size: 15px; | ||
| 1419 | + font-weight: 500; | ||
| 1420 | +} | ||
| 1421 | + | ||
| 1422 | +.pricing a.btn-send:hover { | ||
| 1423 | + background-color: #48AAF1; | ||
| 1424 | +} | ||
| 1425 | + | ||
| 1426 | +.pricing ul li:nth-child(even) { | ||
| 1427 | + background: #E6E6E6; | ||
| 1428 | +} | ||
| 1429 | + | ||
| 1430 | +.pricing-top-box { | ||
| 1431 | + background-color: #266DD1; | ||
| 1432 | +} | ||
| 1433 | + | ||
| 1434 | +@media (max-width:1440px) { | ||
| 1435 | + .pricing a.btn-send { | ||
| 1436 | + padding: 15px 25px; | ||
| 1437 | + } | ||
| 1438 | + .pricing-title { | ||
| 1439 | + font-size: 30px; | ||
| 1440 | + } | ||
| 1441 | +} | ||
| 1442 | + | ||
| 1443 | +@media (max-width:768px) { | ||
| 1444 | + .pricing a.btn-send { | ||
| 1445 | + padding: 15px 30px; | ||
| 1446 | + } | ||
| 1447 | + .pricing-title { | ||
| 1448 | + font-size: 40px; | ||
| 1449 | + } | ||
| 1450 | +} | ||
| 1451 | + | ||
| 1452 | + | ||
| 1453 | +/* 10.0 CLIENTS ===========================================================================*/ | ||
| 1454 | + | ||
| 1455 | +.client-single-logo { | ||
| 1456 | + margin: 0 auto; | ||
| 1457 | +} | ||
| 1458 | + | ||
| 1459 | +.client-logo { | ||
| 1460 | + width: 100%; | ||
| 1461 | + padding: 10px 10px; | ||
| 1462 | +} | ||
| 1463 | + | ||
| 1464 | +#clients { | ||
| 1465 | + background-color: #ebebeb; | ||
| 1466 | + min-height: 210px; | ||
| 1467 | + padding: 50px 0px; | ||
| 1468 | +} | ||
| 1469 | + | ||
| 1470 | +.container-fluid-clients { | ||
| 1471 | + padding-right: 15px; | ||
| 1472 | + padding-left: 15px; | ||
| 1473 | + margin-right: auto; | ||
| 1474 | + margin-left: auto; | ||
| 1475 | +} | ||
| 1476 | + | ||
| 1477 | + | ||
| 1478 | +/* 11.0 ========================================================================= TESTIMONIALS ==*/ | ||
| 1479 | + | ||
| 1480 | +#testimonials { | ||
| 1481 | + background: #266DD1; | ||
| 1482 | + padding: 70px 0 100px 0; | ||
| 1483 | + min-height: 450px; | ||
| 1484 | + | ||
| 1485 | +} | ||
| 1486 | + | ||
| 1487 | +#testimonial { | ||
| 1488 | + padding: 30px 0; | ||
| 1489 | +} | ||
| 1490 | + | ||
| 1491 | +section#testimonials .section-heading { | ||
| 1492 | + color: #fff !important; | ||
| 1493 | +} | ||
| 1494 | + | ||
| 1495 | +section#testimonials .section-subheading { | ||
| 1496 | + color: #fff !important; | ||
| 1497 | +} | ||
| 1498 | + | ||
| 1499 | +#testimonials img { | ||
| 1500 | + width: 120px; | ||
| 1501 | + padding: 10px; | ||
| 1502 | +} | ||
| 1503 | + | ||
| 1504 | +.testimonial-text { | ||
| 1505 | + font-size: 15px; | ||
| 1506 | + line-height: 21px; | ||
| 1507 | + text-decoration: none; | ||
| 1508 | + text-transform: none; | ||
| 1509 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1510 | + padding-top: 7px; | ||
| 1511 | + | ||
| 1512 | + font-weight: 300; | ||
| 1513 | +} | ||
| 1514 | + | ||
| 1515 | +.testimonial-author { | ||
| 1516 | + font-size: 14px; | ||
| 1517 | + float: right; | ||
| 1518 | + margin: 0; | ||
| 1519 | + padding: 10px; | ||
| 1520 | + text-decoration: none; | ||
| 1521 | + text-transform: none; | ||
| 1522 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1523 | + font-style: normal; | ||
| 1524 | +} | ||
| 1525 | + | ||
| 1526 | +.block-text { | ||
| 1527 | + background-color: #fff; | ||
| 1528 | + color: #626262; | ||
| 1529 | + font-size: 14px; | ||
| 1530 | + margin-top: 27px; | ||
| 1531 | + padding: 15px 18px; | ||
| 1532 | + height: 100%; | ||
| 1533 | + float: left; | ||
| 1534 | +} | ||
| 1535 | + | ||
| 1536 | + | ||
| 1537 | +/* 12.0 ===== CONTACT ============*/ | ||
| 1538 | + | ||
| 1539 | +#map-canvas { | ||
| 1540 | + width: 100%; | ||
| 1541 | + height: 400px; | ||
| 1542 | + margin: 0; | ||
| 1543 | + padding: 15px; | ||
| 1544 | + border-radius: 5px; | ||
| 1545 | +} | ||
| 1546 | + | ||
| 1547 | +.company-address, | ||
| 1548 | +.company-contact { | ||
| 1549 | + padding-top: 20px; | ||
| 1550 | + color: #fff; | ||
| 1551 | + | ||
| 1552 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1553 | + font-size: 18px; | ||
| 1554 | + padding-right: 0px !important; | ||
| 1555 | + padding-left: 0px !important; | ||
| 1556 | +} | ||
| 1557 | + | ||
| 1558 | +#success { | ||
| 1559 | + padding: 20px 0; | ||
| 1560 | +} | ||
| 1561 | + | ||
| 1562 | +section#contact { | ||
| 1563 | + background-image: url(../img/backgrounds/contact-img.png); | ||
| 1564 | + background-position: center; | ||
| 1565 | + background-size: cover; | ||
| 1566 | + padding-bottom: 110px; | ||
| 1567 | + min-height: 900px; | ||
| 1568 | + box-shadow: none !important; | ||
| 1569 | + margin-bottom: 0px !important; | ||
| 1570 | +} | ||
| 1571 | +} | ||
| 1572 | + | ||
| 1573 | + | ||
| 1574 | +} | ||
| 1575 | +section#contact .section-heading { | ||
| 1576 | + color: #fff !important; | ||
| 1577 | +} | ||
| 1578 | +section#contact .section-subheading { | ||
| 1579 | + color: #fff !important; | ||
| 1580 | +} | ||
| 1581 | +section#contact .section-heading-contact { | ||
| 1582 | + font-size: 60px; | ||
| 1583 | + margin-top: 0; | ||
| 1584 | + text-align: center; | ||
| 1585 | + text-transform: uppercase !important; | ||
| 1586 | + color: #fff !important; | ||
| 1587 | +} | ||
| 1588 | +section#contact .form-group { | ||
| 1589 | + margin-bottom: 20px | ||
| 1590 | +} | ||
| 1591 | +section#contact .form-group input, | ||
| 1592 | +section#contact .form-group textarea { | ||
| 1593 | + padding: 16px | ||
| 1594 | +} | ||
| 1595 | +section#contact .form-group input.form-control { | ||
| 1596 | + height: auto | ||
| 1597 | +} | ||
| 1598 | +section#contact .form-group textarea.form-control { | ||
| 1599 | + height: 178px; | ||
| 1600 | +} | ||
| 1601 | +section#contact .form-control:focus { | ||
| 1602 | + border-color: #48AAF1; | ||
| 1603 | + box-shadow: none | ||
| 1604 | +} | ||
| 1605 | +section#contact::-webkit-input-placeholder { | ||
| 1606 | + font-family: "lato"; | ||
| 1607 | + text-transform: uppercase; | ||
| 1608 | + font-weight: 700; | ||
| 1609 | + color: #bbb | ||
| 1610 | +} | ||
| 1611 | +section#contact:-moz-placeholder { | ||
| 1612 | + font-family: "lato"; | ||
| 1613 | + text-transform: uppercase; | ||
| 1614 | + font-weight: 700; | ||
| 1615 | + color: #bbb | ||
| 1616 | +} | ||
| 1617 | +section#contact::-moz-placeholder { | ||
| 1618 | + font-family: "lato"; | ||
| 1619 | + text-transform: uppercase; | ||
| 1620 | + font-weight: 700; | ||
| 1621 | + color: #bbb | ||
| 1622 | +} | ||
| 1623 | +section#contact:-ms-input-placeholder { | ||
| 1624 | + font-family: "lato"; | ||
| 1625 | + text-transform: uppercase; | ||
| 1626 | + font-weight: 700; | ||
| 1627 | + color: #bbb | ||
| 1628 | +} | ||
| 1629 | +section#contact .text-danger { | ||
| 1630 | + color: #e74c3c | ||
| 1631 | +} | ||
| 1632 | +address { | ||
| 1633 | + line-height: 33px !important; | ||
| 1634 | +} | ||
| 1635 | +.form-control { | ||
| 1636 | + font-family: "source sans pro" !important; | ||
| 1637 | + border-radius: 0; | ||
| 1638 | +} | ||
| 1639 | + | ||
| 1640 | +@media (max-width: 990px){ | ||
| 1641 | + #map-canvas { | ||
| 1642 | +margin-top: 20px; | ||
| 1643 | +} | ||
| 1644 | +} | ||
| 1645 | + | ||
| 1646 | +/* 13.0 ======== FOOTER ================*/ | ||
| 1647 | + | ||
| 1648 | +.to-top-button { | ||
| 1649 | + position: absolute; | ||
| 1650 | +} | ||
| 1651 | +footer { | ||
| 1652 | + padding: 53px 0px 30px 0px; | ||
| 1653 | + background-color: #0A0A0A; | ||
| 1654 | + bottom: 0; | ||
| 1655 | + left: 0; | ||
| 1656 | + right: 0; | ||
| 1657 | + z-index: 0; | ||
| 1658 | + position: relative !important; | ||
| 1659 | + bottom: 0px; | ||
| 1660 | + width: 100%; | ||
| 1661 | +} | ||
| 1662 | +.footer-info { | ||
| 1663 | + padding: 0px !important; | ||
| 1664 | +} | ||
| 1665 | +.footer-logo { | ||
| 1666 | + float: left; | ||
| 1667 | + margin-bottom: 20px; | ||
| 1668 | + width: 170px; | ||
| 1669 | +} | ||
| 1670 | +.footer-text { | ||
| 1671 | + color: #fff; | ||
| 1672 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1673 | + font-size: 14px; | ||
| 1674 | + line-height: 21px; | ||
| 1675 | + float: left; | ||
| 1676 | + text-align: center; | ||
| 1677 | +} | ||
| 1678 | +.social-icons-footer { | ||
| 1679 | + padding-left: 0px !important; | ||
| 1680 | + float: left; | ||
| 1681 | +} | ||
| 1682 | +.copyright-bottom { | ||
| 1683 | + padding: 0px !important; | ||
| 1684 | +} | ||
| 1685 | +.social-buttons-footer { | ||
| 1686 | + padding-top: 25px; | ||
| 1687 | +} | ||
| 1688 | +footer span.copyright { | ||
| 1689 | + font-family: "lato"; | ||
| 1690 | + text-transform: none; | ||
| 1691 | + color: #757575; | ||
| 1692 | + float: left; | ||
| 1693 | + margin-top: 20px; | ||
| 1694 | + font-size: 12px; | ||
| 1695 | +} | ||
| 1696 | +ul.social-buttons { | ||
| 1697 | + margin-bottom: 0; | ||
| 1698 | +} | ||
| 1699 | +ul.social-buttons li a { | ||
| 1700 | + display: block; | ||
| 1701 | + background-color: #058BCE; | ||
| 1702 | + height: 40px; | ||
| 1703 | + width: 40px; | ||
| 1704 | + border-radius: 100%; | ||
| 1705 | + font-size: 20px; | ||
| 1706 | + line-height: 40px; | ||
| 1707 | + color: #fff; | ||
| 1708 | + outline: 0; | ||
| 1709 | + -webkit-transition: all .3s; | ||
| 1710 | + -moz-transition: all .3s; | ||
| 1711 | + transition: all .3s | ||
| 1712 | +} | ||
| 1713 | +ul.social-buttons li a:hover, | ||
| 1714 | +ul.social-buttons li a:focus, | ||
| 1715 | +ul.social-buttons li a:active { | ||
| 1716 | + background-color: #48AAF1; | ||
| 1717 | +} | ||
| 1718 | +.btn:focus, | ||
| 1719 | +.btn:active, | ||
| 1720 | +.btn.active, | ||
| 1721 | +.btn:active:focus { | ||
| 1722 | + outline: 0 | ||
| 1723 | +} | ||
| 1724 | +@media (max-width: 420px) { | ||
| 1725 | + ul.social-buttons li { | ||
| 1726 | + padding: 0px | ||
| 1727 | + } | ||
| 1728 | +} | ||
| 1729 | +@media (max-width: 380px) { | ||
| 1730 | + ul.social-buttons li a { | ||
| 1731 | + display: block; | ||
| 1732 | + background-color: #058BCE; | ||
| 1733 | + height: 35px; | ||
| 1734 | + width: 35px; | ||
| 1735 | + border-radius: 100%; | ||
| 1736 | + font-size: 15px; | ||
| 1737 | + line-height: 40px; | ||
| 1738 | + color: #fff; | ||
| 1739 | + outline: 0; | ||
| 1740 | + -webkit-transition: all .3s; | ||
| 1741 | + -moz-transition: all .3s; | ||
| 1742 | + transition: all .3s; | ||
| 1743 | + } | ||
| 1744 | +} | ||
| 1745 | + | ||
| 1746 | +/* 13.1 ================== Scroll to top =============== */ | ||
| 1747 | + | ||
| 1748 | + | ||
| 1749 | +.scroll-up { | ||
| 1750 | + position: fixed; | ||
| 1751 | + display: none; | ||
| 1752 | + z-index: 999; | ||
| 1753 | + bottom: 1em; | ||
| 1754 | + right: 1em; | ||
| 1755 | +} | ||
| 1756 | +.scroll-up a { | ||
| 1757 | + background-color: #058BCE; | ||
| 1758 | + display: block; | ||
| 1759 | + width: 40px; | ||
| 1760 | + height: 40px; | ||
| 1761 | + text-align: center; | ||
| 1762 | + font-size: 25px; | ||
| 1763 | + line-height: 38px; | ||
| 1764 | +} | ||
| 1765 | +.scroll-up a:hover, | ||
| 1766 | +.scroll-up a:active { | ||
| 1767 | + background-color: #205CB1; | ||
| 1768 | +} | ||
| 1769 | + | ||
| 1770 | +/************ CUSTOMIZER **************************/ | ||
| 1771 | + | ||
| 1772 | + | ||
| 1773 | + | ||
| 1774 | +#theme-settings { | ||
| 1775 | + width: 250px; | ||
| 1776 | + height: 185px; | ||
| 1777 | + display: block; | ||
| 1778 | + font-family: 'Source Sans Pro', sans-serif; | ||
| 1779 | + background: #FFF; | ||
| 1780 | + float: left; | ||
| 1781 | + position: fixed; | ||
| 1782 | + right: -251px; | ||
| 1783 | + top: 263px; | ||
| 1784 | + box-shadow: 0px 0 6px rgba(0, 0, 0, 0.4); | ||
| 1785 | + z-index: 9999; | ||
| 1786 | + color: #000; | ||
| 1787 | + -moz-transition: all 0.5s; | ||
| 1788 | + -o-transition: all 0.5s; | ||
| 1789 | + -ms-transition: all 0.5s; | ||
| 1790 | + transition: all 0.5s; | ||
| 1791 | + -webkit-transition: all 0.5s; | ||
| 1792 | +} | ||
| 1793 | +#theme-settings.active { | ||
| 1794 | + right: 0; | ||
| 1795 | +} | ||
| 1796 | +#settings-button { | ||
| 1797 | + box-shadow: -3px 0 6px rgba(0, 0, 0, 0.3); | ||
| 1798 | + width: 35px; | ||
| 1799 | + height: 35px; | ||
| 1800 | + display: block; | ||
| 1801 | + background: #FFF url(../img/options.png)no-repeat; | ||
| 1802 | + left: -35px; | ||
| 1803 | + position: absolute; | ||
| 1804 | + cursor: pointer; | ||
| 1805 | +} | ||
| 1806 | +.gradients li { | ||
| 1807 | + list-style: none; | ||
| 1808 | +} | ||
| 1809 | +.settings-title { | ||
| 1810 | + font-weight: 800; | ||
| 1811 | + padding-left: 10px; | ||
| 1812 | + margin-bottom: 15px; | ||
| 1813 | +} | ||
| 1814 | +.color { | ||
| 1815 | + padding-top: 10px; | ||
| 1816 | +} | ||
| 1817 | +.gradient1 { | ||
| 1818 | + width: 50px; | ||
| 1819 | + height: 50px; | ||
| 1820 | + display: block; | ||
| 1821 | + background: #e84040; | ||
| 1822 | + cursor: pointer; | ||
| 1823 | + float: left; | ||
| 1824 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1825 | +} | ||
| 1826 | +.gradient2 { | ||
| 1827 | + width: 50px; | ||
| 1828 | + height: 50px; | ||
| 1829 | + display: block; | ||
| 1830 | + background: #1D4079; | ||
| 1831 | + cursor: pointer; | ||
| 1832 | + float: left; | ||
| 1833 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1834 | +} | ||
| 1835 | +.gradient3 { | ||
| 1836 | + width: 50px; | ||
| 1837 | + height: 50px; | ||
| 1838 | + display: block; | ||
| 1839 | + background: #2E7D32; | ||
| 1840 | + cursor: pointer; | ||
| 1841 | + float: left; | ||
| 1842 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1843 | +} | ||
| 1844 | +.gradient4 { | ||
| 1845 | + width: 50px; | ||
| 1846 | + height: 50px; | ||
| 1847 | + display: block; | ||
| 1848 | + background: #1abc9c; | ||
| 1849 | + cursor: pointer; | ||
| 1850 | + float: left; | ||
| 1851 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1852 | +} | ||
| 1853 | +.gradient5 { | ||
| 1854 | + width: 50px; | ||
| 1855 | + height: 50px; | ||
| 1856 | + display: block; | ||
| 1857 | + background: #607D8B; | ||
| 1858 | + cursor: pointer; | ||
| 1859 | + float: left; | ||
| 1860 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1861 | +} | ||
| 1862 | +.gradient6 { | ||
| 1863 | + width: 50px; | ||
| 1864 | + height: 50px; | ||
| 1865 | + display: block; | ||
| 1866 | + background: #f39c12; | ||
| 1867 | + cursor: pointer; | ||
| 1868 | + float: left; | ||
| 1869 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1870 | +} | ||
| 1871 | +.gradient7 { | ||
| 1872 | + width: 50px; | ||
| 1873 | + height: 50px; | ||
| 1874 | + display: block; | ||
| 1875 | + background: #512DA8; | ||
| 1876 | + cursor: pointer; | ||
| 1877 | + float: left; | ||
| 1878 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1879 | +} | ||
| 1880 | +.gradient8 { | ||
| 1881 | + width: 50px; | ||
| 1882 | + height: 50px; | ||
| 1883 | + display: block; | ||
| 1884 | + background: #737373; | ||
| 1885 | + cursor: pointer; | ||
| 1886 | + float: left; | ||
| 1887 | + box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.44); | ||
| 1888 | +} | ||
| 1889 | +.gradients { | ||
| 1890 | + padding-left: 5px; | ||
| 1891 | + margin-bottom: 10px; | ||
| 1892 | + float: left; | ||
| 1893 | +} | ||
| 1894 | +.gradients li { | ||
| 1895 | + padding: 5px; | ||
| 1896 | + float: left; | ||
| 1897 | +} | ||
| 1898 | +.gradient-title { | ||
| 1899 | + margin-bottom: 10px; | ||
| 1900 | + float: left; | ||
| 1901 | + width: 100%; | ||
| 1902 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/fonts/fontawesome-webfont.eot
0 → 100644
No preview for this file type
views/fonts/fontawesome-webfont.svg
0 → 100644
This diff could not be displayed because it is too large.
views/fonts/fontawesome-webfont.ttf
0 → 100644
No preview for this file type
views/fonts/fontawesome-webfont.woff
0 → 100644
No preview for this file type
views/fonts/fontawesome-webfont.woff2
0 → 100644
No preview for this file type
views/fonts/glyphicons-halflings-regular.eot
0 → 100644
No preview for this file type
views/fonts/glyphicons-halflings-regular.svg
0 → 100644
This diff could not be displayed because it is too large.
views/fonts/glyphicons-halflings-regular.ttf
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
views/img/backgrounds/contact-img.png
0 → 100644
445 KB
views/img/backgrounds/genre-bg.jpg
0 → 100644
178 KB
views/img/backgrounds/main-bg-two.jpg
0 → 100644
244 KB
views/img/backgrounds/main-bg.jpg
0 → 100644
146 KB
views/img/backgrounds/services-bg.jpg
0 → 100644
44.4 KB
views/img/clients/airbnb-logo.png
0 → 100644
4.32 KB
views/img/clients/amazon-logo.png
0 → 100644
4.21 KB
views/img/clients/audio-logo.png
0 → 100644
4.8 KB
views/img/clients/bootstrap-logo.png
0 → 100644
4.41 KB
views/img/clients/envato-logo.png
0 → 100644
4.03 KB
views/img/clients/geforce-logo.png
0 → 100644
2.78 KB
views/img/clients/river-logo.png
0 → 100644
4.36 KB
views/img/clients/talenthouse-logo.png
0 → 100644
3.56 KB
views/img/clients/tmobile-logo.png
0 → 100644
3.54 KB
views/img/clients/uber-logo.png
0 → 100644
3.63 KB
views/img/clients/valve-logo.png
0 → 100644
3.68 KB
views/img/clients/woo-logo.png
0 → 100644
3.67 KB
views/img/footer-logo.png
0 → 100644
1.53 KB
views/img/logo.png
0 → 100644
1.53 KB
views/img/options.png
0 → 100644
1.76 KB
views/img/portfolio/1.jpg
0 → 100644
17 KB
views/img/portfolio/2.jpg
0 → 100644
12.8 KB
views/img/portfolio/3.jpg
0 → 100644
31.5 KB
views/img/portfolio/4.jpg
0 → 100644
22 KB
views/img/portfolio/5.jpg
0 → 100644
19.1 KB
views/img/portfolio/6.jpg
0 → 100644
27.2 KB
views/img/portfolio/book.jpg
0 → 100644
16.9 KB
views/img/portfolio/card.jpg
0 → 100644
19.3 KB
views/img/portfolio/flat.jpg
0 → 100644
112 KB
views/img/portfolio/flattastic-free.jpg
0 → 100644
80.6 KB
views/img/team/1.png
0 → 100644
39.2 KB
views/img/team/2.png
0 → 100644
43 KB
views/img/team/3.png
0 → 100644
55 KB
views/img/team/4.png
0 → 100644
18.1 KB
views/img/team/david.png
0 → 100644
89.2 KB
views/img/team/jenna.png
0 → 100644
53.8 KB
views/img/team/nicole.png
0 → 100644
64.2 KB
views/index.ejs
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<!-- | ||
| 3 | + xBe by TEMPLATE STOCK | ||
| 4 | + templatestock.co @templatestock | ||
| 5 | + Released for free under the Creative Commons Attribution 3.0 license (templated.co/license) | ||
| 6 | +--> | ||
| 7 | + | ||
| 8 | + | ||
| 9 | +<html lang="en"> | ||
| 10 | + | ||
| 11 | +<head> | ||
| 12 | + <meta charset="utf-8"> | ||
| 13 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 14 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 15 | + | ||
| 16 | + <title> xBe Free HTML5 Responsive Template | Template Stock</title> | ||
| 17 | + | ||
| 18 | + <!-- Bootstrap Core CSS --> | ||
| 19 | + | ||
| 20 | + <link href="css/bootstrap.css" rel="stylesheet"> | ||
| 21 | + | ||
| 22 | + <!-- Custom CSS --> | ||
| 23 | + | ||
| 24 | + <link rel="stylesheet" href="css/style.css"> | ||
| 25 | + | ||
| 26 | + <!-- Custom Fonts --> | ||
| 27 | + | ||
| 28 | + <link href="css/font-awesome.min.css" rel="stylesheet" type="text/css"> | ||
| 29 | + <link href='https://fonts.googleapis.com/css?family=Lato:400,300,100,700,900' rel='stylesheet' type='text/css'> | ||
| 30 | + <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'> | ||
| 31 | + <link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700' rel='stylesheet' type='text/css'> | ||
| 32 | + | ||
| 33 | + | ||
| 34 | + <!-- Custom Animations --> | ||
| 35 | + | ||
| 36 | + <link rel="stylesheet" href="css/animate.css"> | ||
| 37 | + | ||
| 38 | +</head> | ||
| 39 | + | ||
| 40 | +<body> | ||
| 41 | + <!-- HEADER --> | ||
| 42 | + <header id="header"> | ||
| 43 | + <!-- Navigation --> | ||
| 44 | + <nav class="navbar navbar-default navbar-fixed-top"> | ||
| 45 | + <div class="container-fluid top-nav"> | ||
| 46 | + <!-- Brand and toggle get grouped for better mobile display --> | ||
| 47 | + <div class="navbar-header page-scroll"> | ||
| 48 | + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||
| 49 | + <span class="sr-only">Toggle navigation</span> | ||
| 50 | + <span class="icon-bar"></span> | ||
| 51 | + <span class="icon-bar"></span> | ||
| 52 | + <span class="icon-bar"></span> | ||
| 53 | + </button> | ||
| 54 | + <a class="navbar-brand logo-top page-scroll" href="#header"> | ||
| 55 | + <img class="img-responsive" src="img/logo.png" alt="logo"> | ||
| 56 | + </a> | ||
| 57 | + </div> | ||
| 58 | + <!-- Collect the nav links, forms, and other content for toggling --> | ||
| 59 | + <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
| 60 | + <ul class="nav navbar-nav navbar-right"> | ||
| 61 | + <li class="hidden nav-buttons"> | ||
| 62 | + <a href="#page-top"></a> | ||
| 63 | + </li> | ||
| 64 | + <li> | ||
| 65 | + <a class="page-scroll" href="#services">Select</a> | ||
| 66 | + </li> | ||
| 67 | + <li> | ||
| 68 | + <a class="page-scroll" href="#team">아티스트</a> | ||
| 69 | + </li> | ||
| 70 | + <li> | ||
| 71 | + <a class="page-scroll" href="#portfolio">Portfolio</a> | ||
| 72 | + </li> | ||
| 73 | + <li> | ||
| 74 | + <a class="page-scroll" href="#contact">Contact</a> | ||
| 75 | + </li> | ||
| 76 | + </ul> | ||
| 77 | + </div> | ||
| 78 | + <!-- /.navbar-collapse --> | ||
| 79 | + </div> | ||
| 80 | + <!-- /.container-fluid --> | ||
| 81 | + </nav> | ||
| 82 | + </header> | ||
| 83 | + <!-- Slider --> | ||
| 84 | + <section id="slider"> | ||
| 85 | + <div id="myCarousel-one" class="carousel slide"> | ||
| 86 | + | ||
| 87 | + <ol class="carousel-indicators"> | ||
| 88 | + <li data-target="#myCarousel-one" data-slide-to="0" class="active"></li> | ||
| 89 | + <li data-target="#myCarousel-one" data-slide-to="1"></li> | ||
| 90 | + | ||
| 91 | + </ol> | ||
| 92 | + | ||
| 93 | + <div class="carousel-inner"> | ||
| 94 | + <div class="item active"> | ||
| 95 | + | ||
| 96 | + <div class="carousel-caption wrapper"> | ||
| 97 | + <div class="row"> | ||
| 98 | + <div class="col-md-12"> | ||
| 99 | + <div class="intro-text"> | ||
| 100 | + <h1 class="intro-lead-in animated bounceInLeft">with spotify</h1> | ||
| 101 | + <h2 class="intro-heading animated bounceInRight">Digging service</h2> | ||
| 102 | + <p class="intro-paragraph animated bounceInRight">당신만의 노래를 추천드립니다.</p> | ||
| 103 | + </div> | ||
| 104 | + <a href="#services" class="page-scroll btn btn-xl slider-button animated bounceInUp">시작하기</a> | ||
| 105 | + </div> | ||
| 106 | + </div> | ||
| 107 | + </div> | ||
| 108 | + <img src="img/backgrounds/main-bg.jpg" alt="slider-image"/> | ||
| 109 | + | ||
| 110 | + </div> | ||
| 111 | + <div class="item"> | ||
| 112 | + <div class="carousel-caption wrapper"> | ||
| 113 | + <div class="row"> | ||
| 114 | + <div class="col-md-12"> | ||
| 115 | + <div class="intro-text"> | ||
| 116 | + <h1 class="intro-lead-in animated bounceInLeft">with spotify</h1> | ||
| 117 | + <h2 class="intro-heading animated bounceInRight">Digging service</h2> | ||
| 118 | + <p class="intro-paragraph animated bounceInRight">환영합니다.</p> | ||
| 119 | + </div> | ||
| 120 | + <a href="#services" class="page-scroll btn btn-xl slider-button animated bounceInUp">시작하기</a> | ||
| 121 | + </div> | ||
| 122 | + </div> | ||
| 123 | + </div> | ||
| 124 | + <img src="img/backgrounds/main-bg-two.jpg" alt="slider-image"/> | ||
| 125 | + </div> | ||
| 126 | + <!-- Controls --> | ||
| 127 | + <a class="myCarousel-one-left" href="#myCarousel-one" data-slide="prev"> | ||
| 128 | + <i class="fa fa-angle-left"></i> | ||
| 129 | + </a> | ||
| 130 | + <a class="myCarousel-one-right" href="#myCarousel-one" data-slide="next"> | ||
| 131 | + <i class="fa fa-angle-right"></i> | ||
| 132 | + </a> | ||
| 133 | + </div> | ||
| 134 | + </div> | ||
| 135 | + </section> | ||
| 136 | + | ||
| 137 | + <!-- Genre Section --> | ||
| 138 | + <section id="services"> | ||
| 139 | + <div class="container-fluid wrapper"> | ||
| 140 | + <div class="row"> | ||
| 141 | + <div class="col-lg-12 text-left"> | ||
| 142 | + <h2 class="section-heading">원하는 장르를 선택하세요.</h2> | ||
| 143 | + <h3 class="section-subheading">당신이 원하는 장르에서 아티스트를 선별할 것입니다. </h3> | ||
| 144 | + </div> | ||
| 145 | + </div> | ||
| 146 | + <div class="row text-center"> | ||
| 147 | + <!-- First row services --> | ||
| 148 | + <div class="row first-services"> | ||
| 149 | + <div class="col-sm-12 col-md-4 service"> | ||
| 150 | + <i class="fa fa-desktop"></i> | ||
| 151 | + <h4 class="service-heading">락</h4> | ||
| 152 | + <p class="text-services">rock</p> | ||
| 153 | + </div> | ||
| 154 | + <div class="col-sm-12 col-md-4 service"> | ||
| 155 | + <i class="fa fa-magic"></i> | ||
| 156 | + <h4 class="service-heading">일렉</h4> | ||
| 157 | + <p class="text-services">electronic.</p> | ||
| 158 | + </div> | ||
| 159 | + <div class="col-sm-12 col-md-4 service"> | ||
| 160 | + <i class="fa fa-cubes"></i> | ||
| 161 | + <h4 class="service-heading">힙합</h4> | ||
| 162 | + <p class="text-services">hip-hop</p> | ||
| 163 | + </div> | ||
| 164 | + </div> | ||
| 165 | + <!-- Second row services --> | ||
| 166 | + <div class="row second-services"> | ||
| 167 | + <div class="col-sm-12 col-md-4 service"> | ||
| 168 | + <i class="fa fa-cogs"></i> | ||
| 169 | + <h4 class="service-heading">어쿠스틱</h4> | ||
| 170 | + <p class="text-services">acoustic</p> | ||
| 171 | + </div> | ||
| 172 | + <div class="col-sm-12 col-md-4 service"> | ||
| 173 | + <i class="fa fa-laptop"></i> | ||
| 174 | + <h4 class="service-heading">재즈</h4> | ||
| 175 | + <p class="text-services">jazz</p> | ||
| 176 | + </div> | ||
| 177 | + <div class="col-sm-12 col-md-4 service"> | ||
| 178 | + <i class="fa fa-heart"></i> | ||
| 179 | + <h4 class="service-heading">팝</h4> | ||
| 180 | + <p class="text-services">pop</p> | ||
| 181 | + </div> | ||
| 182 | + </div> | ||
| 183 | + </div> | ||
| 184 | + </div> | ||
| 185 | + </section> | ||
| 186 | + <!-- 추천 결과 --> | ||
| 187 | + <section id="team"> | ||
| 188 | + <div class="container-fluid wrapper"> | ||
| 189 | + <div class="row"> | ||
| 190 | + <div class="col-lg-12 text-center"> | ||
| 191 | + <h2 class="section-heading">추천 아티스트</h2> | ||
| 192 | + <h3 class="section-subheading text-muted">마음에 드는 아티스트 노래를 재생해보세요. </h3> | ||
| 193 | + </div> | ||
| 194 | + </div> | ||
| 195 | + <div id="myCarousel-two" class="carousel slide"> | ||
| 196 | + <!-- Wrapper for Slides --> | ||
| 197 | + <div class="carousel-inner team-wrapper"> | ||
| 198 | + <div class="item active"> | ||
| 199 | + <!-- Team Member One --> | ||
| 200 | + <div class="col-xs-12 col-sm-4 col-md-4 team-member"> | ||
| 201 | + <img src="img/team/david.png" alt="team-member-img1"> | ||
| 202 | + </div> | ||
| 203 | + <div class="col-xs-12 col-sm-8 col-md-8 team-member-bio"> | ||
| 204 | + <h3 class="team-member-name">David Farland</h3> | ||
| 205 | + <p class="text-muted-role">Full Stack Developer</p> | ||
| 206 | + <p class="team-text-short">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p> | ||
| 207 | + <ul class="list-inline social-buttons"> | ||
| 208 | + <li><a href="#"><i class="fa fa-twitter"></i></a> | ||
| 209 | + </li> | ||
| 210 | + <li><a href="#"><i class="fa fa-facebook"></i></a> | ||
| 211 | + </li> | ||
| 212 | + <li><a href="#"><i class="fa fa-linkedin"></i></a> | ||
| 213 | + </li> | ||
| 214 | + </ul> | ||
| 215 | + </div> | ||
| 216 | + </div> | ||
| 217 | + <div class="item"> | ||
| 218 | + <!-- Team Member Two --> | ||
| 219 | + <div class="col-xs-12 col-sm-4 col-md-4 team-member"> | ||
| 220 | + <img src="img/team/jenna.png" alt="team-member-img1"> | ||
| 221 | + </div> | ||
| 222 | + <div class="col-xs-12 col-sm-8 col-md-8 team-member-bio"> | ||
| 223 | + <h3 class="team-member-name">Jenna Carrera</h3> | ||
| 224 | + <p class="text-muted-role">Lead Designer</p> | ||
| 225 | + <p class="team-text-short">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p> | ||
| 226 | + <ul class="list-inline social-buttons"> | ||
| 227 | + <li><a href="#"><i class="fa fa-twitter"></i></a> | ||
| 228 | + </li> | ||
| 229 | + <li><a href="#"><i class="fa fa-facebook"></i></a> | ||
| 230 | + </li> | ||
| 231 | + <li><a href="#"><i class="fa fa-linkedin"></i></a> | ||
| 232 | + </li> | ||
| 233 | + </ul> | ||
| 234 | + </div> | ||
| 235 | + </div> | ||
| 236 | + <div class="item"> | ||
| 237 | + <!-- Team Member Three --> | ||
| 238 | + <div class="col-xs-12 col-sm-4 col-md-4 team-member"> | ||
| 239 | + <img src="img/team/nicole.png" alt="team-member-img1"> | ||
| 240 | + </div> | ||
| 241 | + <div class="col-xs-12 col-sm-8 col-md-8 team-member-bio"> | ||
| 242 | + <h3 class="team-member-name">Nicole Johnson</h3> | ||
| 243 | + <p class="text-muted-role">Lead Designer</p> | ||
| 244 | + <p class="team-text-short">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p> | ||
| 245 | + <ul class="list-inline social-buttons"> | ||
| 246 | + <li><a href="#"><i class="fa fa-twitter"></i></a> | ||
| 247 | + </li> | ||
| 248 | + <li><a href="#"><i class="fa fa-facebook"></i></a> | ||
| 249 | + </li> | ||
| 250 | + <li><a href="#"><i class="fa fa-linkedin"></i></a> | ||
| 251 | + </li> | ||
| 252 | + </ul> | ||
| 253 | + </div> | ||
| 254 | + </div> | ||
| 255 | + </div> | ||
| 256 | + <!-- Controls --> | ||
| 257 | + <a class="left carousel-control" href="#myCarousel-two" data-slide="prev"> | ||
| 258 | + <span class="glyphicon glyphicon-chevron-left"></span> | ||
| 259 | + </a> | ||
| 260 | + <a class="right carousel-control" href="#myCarousel-two" data-slide="next"> | ||
| 261 | + <span class="glyphicon glyphicon-chevron-right"></span> | ||
| 262 | + </a> | ||
| 263 | + <!-- Indicators --> | ||
| 264 | + <ol class="carousel-indicators"> | ||
| 265 | + <li data-target="#myCarousel-two" data-slide-to="0" class="active"></li> | ||
| 266 | + <li data-target="#myCarousel-two" data-slide-to="1"></li> | ||
| 267 | + <li data-target="#myCarousel-two" data-slide-to="2"></li> | ||
| 268 | + </ol> | ||
| 269 | + </div> | ||
| 270 | + </div> | ||
| 271 | + </section> | ||
| 272 | + | ||
| 273 | + <!-- Portfolio Section --> | ||
| 274 | + <section id="portfolio"> | ||
| 275 | + <div class="container-fluid wrapper"> | ||
| 276 | + <div class="row"> | ||
| 277 | + <div class="col-md-12"> | ||
| 278 | + <h2 class="section-heading">Portfolio</h2> | ||
| 279 | + <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</h3> | ||
| 280 | + </div> | ||
| 281 | + <div class="col-xs-12 col-md-12 portfolio-submenu text-center"> | ||
| 282 | + <ul class="filter"> | ||
| 283 | + <li><a class="active" href="#" data-filter="*">All</a></li> | ||
| 284 | + <li><a href="#" data-filter=".wordpress">WordPress</a></li> | ||
| 285 | + <li><a href="#" data-filter=".html">Web Design</a></li> | ||
| 286 | + <li><a href="#" data-filter=".graphic">Graphic Design</a></li> | ||
| 287 | + <li><a href="#" data-filter=".php">PHP</a></li> | ||
| 288 | + <li><a href="#" data-filter=".bootstrap">Bootstrap</a></li> | ||
| 289 | + </ul> | ||
| 290 | + <!--/#portfolio-filter--> | ||
| 291 | + </div> | ||
| 292 | + </div> | ||
| 293 | + </div> | ||
| 294 | + <div class="portfolio-wrapper portfolio-container-fluid"> | ||
| 295 | + <div class="portfolio-items"> | ||
| 296 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid php graphic"> | ||
| 297 | + <div class="portfolio-item"> | ||
| 298 | + <div class="hover-bg"> | ||
| 299 | + <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal"> | ||
| 300 | + <div class="hover-text"> | ||
| 301 | + <h4>Wine Label</h4> | ||
| 302 | + <h5>Branding</h5> | ||
| 303 | + <div class="clearfix"></div> | ||
| 304 | + <i class="fa fa-plus"></i> | ||
| 305 | + </div> | ||
| 306 | + <img src="img/portfolio/card.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 307 | + </a> | ||
| 308 | + </div> | ||
| 309 | + </div> | ||
| 310 | + </div> | ||
| 311 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid php graphic"> | ||
| 312 | + <div class="portfolio-item"> | ||
| 313 | + <div class="hover-bg"> | ||
| 314 | + <a href="#portfolioModal2" class="portfolio-link" data-toggle="modal"> | ||
| 315 | + <div class="hover-text"> | ||
| 316 | + <h4>Business Card</h4> | ||
| 317 | + <h5>Stationary</h5> | ||
| 318 | + <div class="clearfix"></div> | ||
| 319 | + <i class="fa fa-plus"></i> | ||
| 320 | + </div> | ||
| 321 | + <img src="img/portfolio/2.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 322 | + </a> | ||
| 323 | + </div> | ||
| 324 | + </div> | ||
| 325 | + </div> | ||
| 326 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress bootstrap"> | ||
| 327 | + <div class="portfolio-item"> | ||
| 328 | + <div class="hover-bg"> | ||
| 329 | + <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal"> | ||
| 330 | + <div class="hover-text"> | ||
| 331 | + <h4>Logo Design</h4> | ||
| 332 | + <h5>Branding</h5> | ||
| 333 | + <div class="clearfix"></div> | ||
| 334 | + <i class="fa fa-plus"></i> | ||
| 335 | + </div> | ||
| 336 | + <img src="img/portfolio/3.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 337 | + </a> | ||
| 338 | + </div> | ||
| 339 | + </div> | ||
| 340 | + </div> | ||
| 341 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress html bootstrap graphic"> | ||
| 342 | + <div class="portfolio-item"> | ||
| 343 | + <div class="hover-bg"> | ||
| 344 | + <a href="#portfolioModal2" class="portfolio-link" data-toggle="modal"> | ||
| 345 | + <div class="hover-text"> | ||
| 346 | + <h4>Logo Design</h4> | ||
| 347 | + <h5>Branding</h5> | ||
| 348 | + <div class="clearfix"></div> | ||
| 349 | + <i class="fa fa-plus"></i> | ||
| 350 | + </div> | ||
| 351 | + <img src="img/portfolio/4.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 352 | + </a> | ||
| 353 | + </div> | ||
| 354 | + </div> | ||
| 355 | + </div> | ||
| 356 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress graphic"> | ||
| 357 | + <div class="portfolio-item"> | ||
| 358 | + <div class="hover-bg"> | ||
| 359 | + <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal"> | ||
| 360 | + <div class="hover-text"> | ||
| 361 | + <h4>Web Design</h4> | ||
| 362 | + <h5>Web Design</h5> | ||
| 363 | + <div class="clearfix"></div> | ||
| 364 | + <i class="fa fa-plus"></i> | ||
| 365 | + </div> | ||
| 366 | + <img src="img/portfolio/5.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 367 | + </a> | ||
| 368 | + </div> | ||
| 369 | + </div> | ||
| 370 | + </div> | ||
| 371 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress html graphic"> | ||
| 372 | + <div class="portfolio-item"> | ||
| 373 | + <div class="hover-bg"> | ||
| 374 | + <a href="#portfolioModal2" class="portfolio-link" data-toggle="modal"> | ||
| 375 | + <div class="hover-text"> | ||
| 376 | + <h4>Packageing and Label Design</h4> | ||
| 377 | + <h5>Branding</h5> | ||
| 378 | + <div class="clearfix"></div> | ||
| 379 | + <i class="fa fa-plus"></i> | ||
| 380 | + </div> | ||
| 381 | + <img src="img/portfolio/6.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 382 | + </a> | ||
| 383 | + </div> | ||
| 384 | + </div> | ||
| 385 | + </div> | ||
| 386 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress graphic"> | ||
| 387 | + <div class="portfolio-item"> | ||
| 388 | + <div class="hover-bg"> | ||
| 389 | + <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal"> | ||
| 390 | + <div class="hover-text"> | ||
| 391 | + <h4>Logo Design</h4> | ||
| 392 | + <h5>Branding</h5> | ||
| 393 | + <div class="clearfix"></div> | ||
| 394 | + <i class="fa fa-plus"></i> | ||
| 395 | + </div> | ||
| 396 | + <img src="img/portfolio/1.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 397 | + </a> | ||
| 398 | + </div> | ||
| 399 | + </div> | ||
| 400 | + </div> | ||
| 401 | + <div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 work-grid wordpress graphic"> | ||
| 402 | + <div class="portfolio-item"> | ||
| 403 | + <div class="hover-bg"> | ||
| 404 | + <a href="#portfolioModal2" class="portfolio-link" data-toggle="modal"> | ||
| 405 | + <div class="hover-text"> | ||
| 406 | + <h4>Book Cover</h4> | ||
| 407 | + <h5>Branding</h5> | ||
| 408 | + <div class="clearfix"></div> | ||
| 409 | + <i class="fa fa-plus"></i> | ||
| 410 | + </div> | ||
| 411 | + <img src="img/portfolio/book.jpg" class="img-responsive" alt="portfolio-image"> | ||
| 412 | + </a> | ||
| 413 | + </div> | ||
| 414 | + </div> | ||
| 415 | + </div> | ||
| 416 | + </div> | ||
| 417 | + </div> | ||
| 418 | + </section> | ||
| 419 | + | ||
| 420 | + | ||
| 421 | + <!-- Contact Section --> | ||
| 422 | + <section id="contact"> | ||
| 423 | + <div class="container-fluid wrapper"> | ||
| 424 | + <div class="row"> | ||
| 425 | + <div class="col-lg-6 text-center"> | ||
| 426 | + <h2 class="section-heading">우리 서비스가 마음에 드세요?</h2> | ||
| 427 | + <h3 class="section-subheading">언제든지 문의주세요.</h3> | ||
| 428 | + </div> | ||
| 429 | + <div class="col-md-6"> | ||
| 430 | + <div class="company-address col-sm-6 col-md-6"> | ||
| 431 | + <address> | ||
| 432 | + Seoul Korea | ||
| 433 | + <br> | ||
| 434 | + <span id="map-input"> | ||
| 435 | + | ||
| 436 | + mapogu <br> | ||
| 437 | + 7gil 14</span> | ||
| 438 | + <br> | ||
| 439 | + </address> | ||
| 440 | + </div> | ||
| 441 | + <div class="company-contact col-sm-6 col-md-6"> | ||
| 442 | + <address>Email Us | ||
| 443 | + <br> | ||
| 444 | + <a href="mailto:#">heyday2036@khu.ac.kr</a> | ||
| 445 | + </address> | ||
| 446 | + </div> | ||
| 447 | + </div> | ||
| 448 | + </div> | ||
| 449 | + <div class="row"> | ||
| 450 | + <div class="col-lg-12"> | ||
| 451 | + <form name="sentMessage" id="" novalidate> | ||
| 452 | + <div class="row"> | ||
| 453 | + <div class="col-md-6 contact-form-box"> | ||
| 454 | + <div class="form-group"> | ||
| 455 | + <input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name."> | ||
| 456 | + <p class="help-block text-danger"></p> | ||
| 457 | + </div> | ||
| 458 | + <div class="form-group"> | ||
| 459 | + <input type="email" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address."> | ||
| 460 | + <p class="help-block text-danger"></p> | ||
| 461 | + </div> | ||
| 462 | + <div class="form-group"> | ||
| 463 | + <input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required data-validation-required-message="Please enter your phone number."> | ||
| 464 | + <p class="help-block text-danger"></p> | ||
| 465 | + </div> | ||
| 466 | + <div class="form-group"> | ||
| 467 | + <textarea class="form-control" placeholder="Your Message *" id="message" required data-validation-required-message="Please enter a message."></textarea> | ||
| 468 | + <p class="help-block text-danger"></p> | ||
| 469 | + </div> | ||
| 470 | + | ||
| 471 | + | ||
| 472 | + <div id="success"></div> | ||
| 473 | + <button type="submit" class="btn btn-xl">Send Message</button> | ||
| 474 | + | ||
| 475 | + </div> | ||
| 476 | + </div> | ||
| 477 | + </form> | ||
| 478 | + </div> | ||
| 479 | + | ||
| 480 | + </div> | ||
| 481 | + </div> | ||
| 482 | + </section> | ||
| 483 | + <!-- Footer --> | ||
| 484 | + <footer> | ||
| 485 | + <div class="container-fluid wrapper"> | ||
| 486 | + <div class="col-lg-12 footer-info"> | ||
| 487 | + <a class="footer-logo" href="#header"> | ||
| 488 | + <img class="img-responsive" src="img/footer-logo.png" alt="logo-footer"> | ||
| 489 | + </a> | ||
| 490 | + <p class="footer-text"> 2021 KIM YU MIN </p> | ||
| 491 | + </div> | ||
| 492 | + <div class="col-sm-6 col-md-12 social-icons-footer"> | ||
| 493 | + <ul class="list-inline social-buttons"> | ||
| 494 | + <li><a href="#"><i class="fa fa-twitter"></i></a> | ||
| 495 | + </li> | ||
| 496 | + <li><a href="#"><i class="fa fa-facebook"></i></a> | ||
| 497 | + </li> | ||
| 498 | + <li><a href="#"><i class="fa fa-behance"></i></a> | ||
| 499 | + </li> | ||
| 500 | + <li><a href="#"><i class="fa fa-pinterest"></i></a> | ||
| 501 | + </li> | ||
| 502 | + <li><a href="#"><i class="fa fa-google"></i></a> | ||
| 503 | + </li> | ||
| 504 | + </ul> | ||
| 505 | + </div> | ||
| 506 | + <div class="col-sm-12 col-md-12 col-lg-12 copyright-bottom"> | ||
| 507 | + <span class="copyright">Design Copyright © xBe 2016 Created By <a href="http://templatestock" target="_blank">Template Stock</a> </span> | ||
| 508 | + </div> | ||
| 509 | + </div> | ||
| 510 | + </footer> | ||
| 511 | + <!-- Scroll-up --> | ||
| 512 | + <div class="scroll-up"> | ||
| 513 | + <a href="#header" class="page-scroll"><i class="fa fa-angle-up"></i></a> | ||
| 514 | + </div> | ||
| 515 | + <div id="theme-settings"> | ||
| 516 | + <div id="settings-button"> | ||
| 517 | + </div> | ||
| 518 | + <div class="color"> | ||
| 519 | + <span class="settings-title">Theme color selector</span> | ||
| 520 | + <ul class="gradients"> | ||
| 521 | + <li> | ||
| 522 | + <div class="gradient1"> | ||
| 523 | + </div> | ||
| 524 | + </li> | ||
| 525 | + <li> | ||
| 526 | + <div class="gradient2"> | ||
| 527 | + </div> | ||
| 528 | + </li> | ||
| 529 | + <li> | ||
| 530 | + <div class="gradient3"> | ||
| 531 | + </div> | ||
| 532 | + </li> | ||
| 533 | + <li> | ||
| 534 | + <div class="gradient4"> | ||
| 535 | + </div> | ||
| 536 | + </li> | ||
| 537 | + <li> | ||
| 538 | + <div class="gradient5"> | ||
| 539 | + </div> | ||
| 540 | + </li> | ||
| 541 | + <li> | ||
| 542 | + <div class="gradient6"> | ||
| 543 | + </div> | ||
| 544 | + </li> | ||
| 545 | + <li> | ||
| 546 | + <div class="gradient7"> | ||
| 547 | + </div> | ||
| 548 | + </li> | ||
| 549 | + <li> | ||
| 550 | + <div class="gradient8"> | ||
| 551 | + </div> | ||
| 552 | + </li> | ||
| 553 | + </ul> | ||
| 554 | + </div> | ||
| 555 | + </div> | ||
| 556 | + <!-- Portfolio Modals --> | ||
| 557 | + <!-- Use the modals below to showcase details about your portfolio projects! --> | ||
| 558 | + <!-- Portfolio Modal 1 --> | ||
| 559 | + <div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true"> | ||
| 560 | + <div class="modal-content"> | ||
| 561 | + <div class="close-modal" data-dismiss="modal"> | ||
| 562 | + <div class="lr"> | ||
| 563 | + <div class="rl"> | ||
| 564 | + </div> | ||
| 565 | + </div> | ||
| 566 | + </div> | ||
| 567 | + <div class="container"> | ||
| 568 | + <div class="row"> | ||
| 569 | + <div class="col-lg-8 col-lg-offset-2"> | ||
| 570 | + <div class="modal-body"> | ||
| 571 | + <!-- Project Details Go Here --> | ||
| 572 | + <h2>Project Name</h2> | ||
| 573 | + <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> | ||
| 574 | + <img class="img-responsive img-centered" src="img/portfolio/flattastic-free.jpg" alt="modal"> | ||
| 575 | + <p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p> | ||
| 576 | + <p> | ||
| 577 | + <strong>Want this UI kit sample?</strong>You can download it for free, courtesy of <a href="#">edubd.net</a>, or you can download it <a href="#">here</a>.</p> | ||
| 578 | + <ul class="list-inline"> | ||
| 579 | + <li>Date: August 9, 2013</li> | ||
| 580 | + <li>Client: Web Designer Depot</li> | ||
| 581 | + <li>Category: Graphic Design</li> | ||
| 582 | + </ul> | ||
| 583 | + <button type="button" class="btn btn-xl" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button> | ||
| 584 | + </div> | ||
| 585 | + </div> | ||
| 586 | + </div> | ||
| 587 | + </div> | ||
| 588 | + </div> | ||
| 589 | + </div> | ||
| 590 | + <!-- Portfolio Modal 2 --> | ||
| 591 | + <div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true"> | ||
| 592 | + <div class="modal-content"> | ||
| 593 | + <div class="close-modal" data-dismiss="modal"> | ||
| 594 | + <div class="lr"> | ||
| 595 | + <div class="rl"> | ||
| 596 | + </div> | ||
| 597 | + </div> | ||
| 598 | + </div> | ||
| 599 | + <div class="container"> | ||
| 600 | + <div class="row"> | ||
| 601 | + <div class="col-lg-8 col-lg-offset-2"> | ||
| 602 | + <div class="modal-body"> | ||
| 603 | + <!-- Project Details Go Here --> | ||
| 604 | + <h2>Project Name</h2> | ||
| 605 | + <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> | ||
| 606 | + <img class="img-responsive img-centered" src="img/portfolio/flat.jpg" alt="modal"> | ||
| 607 | + <p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p> | ||
| 608 | + <p> | ||
| 609 | + <strong>Want this flat style illustrations? </strong>You can download it for free, courtesy of <a href="#">edubd.net</a>, or you can download it <a href="#">here</a>.</p> | ||
| 610 | + <ul class="list-inline"> | ||
| 611 | + <li>Date: February 20, 2015</li> | ||
| 612 | + <li>Client: Web Designer Depot</li> | ||
| 613 | + <li>Category: Graphic Design</li> | ||
| 614 | + </ul> | ||
| 615 | + <button type="button" class="btn btn-xl" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button> | ||
| 616 | + </div> | ||
| 617 | + </div> | ||
| 618 | + </div> | ||
| 619 | + </div> | ||
| 620 | + </div> | ||
| 621 | + </div> | ||
| 622 | + <!-- jQuery --> | ||
| 623 | + <script src="js/jquery.js"></script> | ||
| 624 | + <!-- Bootstrap Core JavaScript --> | ||
| 625 | + <script src="js/bootstrap.min.js"></script> | ||
| 626 | + <!-- Color Settings script --> | ||
| 627 | + <script src="js/settings-script.js"></script> | ||
| 628 | + <!-- Plugin JavaScript --> | ||
| 629 | + <script src="js/jquery.easing.min.js"></script> | ||
| 630 | + <!-- Contact Form JavaScript --> | ||
| 631 | + <script src="js/jqBootstrapValidation.js"></script> | ||
| 632 | + | ||
| 633 | + <!-- SmoothScroll script --> | ||
| 634 | + <script src="js/smoothscroll.js"></script> | ||
| 635 | + <!-- Custom Theme JavaScript --> | ||
| 636 | + <script src="js/xBe.js"></script> | ||
| 637 | + <!-- Isotope --> | ||
| 638 | + <script type="text/javascript" src="js/jquery.isotope.min.js"></script> | ||
| 639 | + <!-- Google Map --> | ||
| 640 | + <script src="http://maps.googleapis.com/maps/api/js?extension=.js&output=embed"></script> | ||
| 641 | + <!-- Footer Reveal scirt --> | ||
| 642 | + <script src="js/footer-reveal.js"></script> | ||
| 643 | + | ||
| 644 | +</body> | ||
| 645 | + | ||
| 646 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/bootstrap.min.js
0 → 100644
| 1 | +/*! | ||
| 2 | + * Bootstrap v3.3.6 (http://getbootstrap.com) | ||
| 3 | + * Copyright 2011-2015 Twitter, Inc. | ||
| 4 | + * Licensed under the MIT license | ||
| 5 | + */ | ||
| 6 | +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active"); | ||
| 7 | +d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/footer-reveal.js
0 → 100644
| 1 | +/** | ||
| 2 | + * footer-reveal.js | ||
| 3 | + * | ||
| 4 | + * Licensed under the MIT license. | ||
| 5 | + * http://www.opensource.org/licenses/mit-license.php | ||
| 6 | + * | ||
| 7 | + * Copyright 2014 Iain Andrew | ||
| 8 | + * https://github.com/IainAndrew | ||
| 9 | + */ | ||
| 10 | + | ||
| 11 | +(function($) { | ||
| 12 | + | ||
| 13 | + $.fn.footerReveal = function(options) { | ||
| 14 | + | ||
| 15 | + var $this = $(this), | ||
| 16 | + $prev = $this.prev(), | ||
| 17 | + $win = $(window), | ||
| 18 | + | ||
| 19 | + defaults = $.extend ({ | ||
| 20 | + shadow : true, | ||
| 21 | + shadowOpacity: 0.8, | ||
| 22 | + zIndex : -100 | ||
| 23 | + }, options ), | ||
| 24 | + | ||
| 25 | + settings = $.extend(true, {}, defaults, options); | ||
| 26 | + | ||
| 27 | + if ($this.outerHeight() <= $win.outerHeight()) { | ||
| 28 | + $this.css({ | ||
| 29 | + 'z-index' : defaults.zIndex, | ||
| 30 | + position : 'fixed', | ||
| 31 | + bottom : 0 | ||
| 32 | + }); | ||
| 33 | + | ||
| 34 | + if (defaults.shadow) { | ||
| 35 | + $prev.css ({ | ||
| 36 | + '-moz-box-shadow' : '0 20px 30px -20px rgba(0,0,0,' + defaults.shadowOpacity + ')', | ||
| 37 | + '-webkit-box-shadow' : '0 20px 30px -20px rgba(0,0,0,' + defaults.shadowOpacity +')', | ||
| 38 | + 'box-shadow' : '0 20px 30px -20px rgba(0,0,0,' + defaults.shadowOpacity + ')' | ||
| 39 | + }); | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + $win.on('load resize', function() { | ||
| 43 | + $this.css({ | ||
| 44 | + 'width' : $prev.outerWidth() | ||
| 45 | + }); | ||
| 46 | + $prev.css({ | ||
| 47 | + 'margin-bottom' : $this.outerHeight() | ||
| 48 | + }); | ||
| 49 | + }); | ||
| 50 | + } | ||
| 51 | + | ||
| 52 | + return this; | ||
| 53 | + | ||
| 54 | + }; | ||
| 55 | + | ||
| 56 | +}) (jQuery); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/jqBootstrapValidation.js
0 → 100644
| 1 | +/* jqBootstrapValidation | ||
| 2 | + * A plugin for automating validation on Twitter Bootstrap formatted forms. | ||
| 3 | + * | ||
| 4 | + * v1.3.6 | ||
| 5 | + * | ||
| 6 | + * License: MIT <http://opensource.org/licenses/mit-license.php> - see LICENSE file | ||
| 7 | + * | ||
| 8 | + * http://ReactiveRaven.github.com/jqBootstrapValidation/ | ||
| 9 | + */ | ||
| 10 | + | ||
| 11 | +(function( $ ){ | ||
| 12 | + | ||
| 13 | + var createdElements = []; | ||
| 14 | + | ||
| 15 | + var defaults = { | ||
| 16 | + options: { | ||
| 17 | + prependExistingHelpBlock: false, | ||
| 18 | + sniffHtml: true, // sniff for 'required', 'maxlength', etc | ||
| 19 | + preventSubmit: true, // stop the form submit event from firing if validation fails | ||
| 20 | + submitError: false, // function called if there is an error when trying to submit | ||
| 21 | + submitSuccess: false, // function called just before a successful submit event is sent to the server | ||
| 22 | + semanticallyStrict: false, // set to true to tidy up generated HTML output | ||
| 23 | + autoAdd: { | ||
| 24 | + helpBlocks: true | ||
| 25 | + }, | ||
| 26 | + filter: function () { | ||
| 27 | + // return $(this).is(":visible"); // only validate elements you can see | ||
| 28 | + return true; // validate everything | ||
| 29 | + } | ||
| 30 | + }, | ||
| 31 | + methods: { | ||
| 32 | + init : function( options ) { | ||
| 33 | + | ||
| 34 | + var settings = $.extend(true, {}, defaults); | ||
| 35 | + | ||
| 36 | + settings.options = $.extend(true, settings.options, options); | ||
| 37 | + | ||
| 38 | + var $siblingElements = this; | ||
| 39 | + | ||
| 40 | + var uniqueForms = $.unique( | ||
| 41 | + $siblingElements.map( function () { | ||
| 42 | + return $(this).parents("form")[0]; | ||
| 43 | + }).toArray() | ||
| 44 | + ); | ||
| 45 | + | ||
| 46 | + $(uniqueForms).bind("submit", function (e) { | ||
| 47 | + var $form = $(this); | ||
| 48 | + var warningsFound = 0; | ||
| 49 | + var $inputs = $form.find("input,textarea,select").not("[type=submit],[type=image]").filter(settings.options.filter); | ||
| 50 | + $inputs.trigger("submit.validation").trigger("validationLostFocus.validation"); | ||
| 51 | + | ||
| 52 | + $inputs.each(function (i, el) { | ||
| 53 | + var $this = $(el), | ||
| 54 | + $controlGroup = $this.parents(".form-group").first(); | ||
| 55 | + if ( | ||
| 56 | + $controlGroup.hasClass("warning") | ||
| 57 | + ) { | ||
| 58 | + $controlGroup.removeClass("warning").addClass("error"); | ||
| 59 | + warningsFound++; | ||
| 60 | + } | ||
| 61 | + }); | ||
| 62 | + | ||
| 63 | + $inputs.trigger("validationLostFocus.validation"); | ||
| 64 | + | ||
| 65 | + if (warningsFound) { | ||
| 66 | + if (settings.options.preventSubmit) { | ||
| 67 | + e.preventDefault(); | ||
| 68 | + } | ||
| 69 | + $form.addClass("error"); | ||
| 70 | + if ($.isFunction(settings.options.submitError)) { | ||
| 71 | + settings.options.submitError($form, e, $inputs.jqBootstrapValidation("collectErrors", true)); | ||
| 72 | + } | ||
| 73 | + } else { | ||
| 74 | + $form.removeClass("error"); | ||
| 75 | + if ($.isFunction(settings.options.submitSuccess)) { | ||
| 76 | + settings.options.submitSuccess($form, e); | ||
| 77 | + } | ||
| 78 | + } | ||
| 79 | + }); | ||
| 80 | + | ||
| 81 | + return this.each(function(){ | ||
| 82 | + | ||
| 83 | + // Get references to everything we're interested in | ||
| 84 | + var $this = $(this), | ||
| 85 | + $controlGroup = $this.parents(".form-group").first(), | ||
| 86 | + $helpBlock = $controlGroup.find(".help-block").first(), | ||
| 87 | + $form = $this.parents("form").first(), | ||
| 88 | + validatorNames = []; | ||
| 89 | + | ||
| 90 | + // create message container if not exists | ||
| 91 | + if (!$helpBlock.length && settings.options.autoAdd && settings.options.autoAdd.helpBlocks) { | ||
| 92 | + $helpBlock = $('<div class="help-block" />'); | ||
| 93 | + $controlGroup.find('.controls').append($helpBlock); | ||
| 94 | + createdElements.push($helpBlock[0]); | ||
| 95 | + } | ||
| 96 | + | ||
| 97 | + // ============================================================= | ||
| 98 | + // SNIFF HTML FOR VALIDATORS | ||
| 99 | + // ============================================================= | ||
| 100 | + | ||
| 101 | + // *snort sniff snuffle* | ||
| 102 | + | ||
| 103 | + if (settings.options.sniffHtml) { | ||
| 104 | + var message = ""; | ||
| 105 | + // --------------------------------------------------------- | ||
| 106 | + // PATTERN | ||
| 107 | + // --------------------------------------------------------- | ||
| 108 | + if ($this.attr("pattern") !== undefined) { | ||
| 109 | + message = "Not in the expected format<!-- data-validation-pattern-message to override -->"; | ||
| 110 | + if ($this.data("validationPatternMessage")) { | ||
| 111 | + message = $this.data("validationPatternMessage"); | ||
| 112 | + } | ||
| 113 | + $this.data("validationPatternMessage", message); | ||
| 114 | + $this.data("validationPatternRegex", $this.attr("pattern")); | ||
| 115 | + } | ||
| 116 | + // --------------------------------------------------------- | ||
| 117 | + // MAX | ||
| 118 | + // --------------------------------------------------------- | ||
| 119 | + if ($this.attr("max") !== undefined || $this.attr("aria-valuemax") !== undefined) { | ||
| 120 | + var max = ($this.attr("max") !== undefined ? $this.attr("max") : $this.attr("aria-valuemax")); | ||
| 121 | + message = "Too high: Maximum of '" + max + "'<!-- data-validation-max-message to override -->"; | ||
| 122 | + if ($this.data("validationMaxMessage")) { | ||
| 123 | + message = $this.data("validationMaxMessage"); | ||
| 124 | + } | ||
| 125 | + $this.data("validationMaxMessage", message); | ||
| 126 | + $this.data("validationMaxMax", max); | ||
| 127 | + } | ||
| 128 | + // --------------------------------------------------------- | ||
| 129 | + // MIN | ||
| 130 | + // --------------------------------------------------------- | ||
| 131 | + if ($this.attr("min") !== undefined || $this.attr("aria-valuemin") !== undefined) { | ||
| 132 | + var min = ($this.attr("min") !== undefined ? $this.attr("min") : $this.attr("aria-valuemin")); | ||
| 133 | + message = "Too low: Minimum of '" + min + "'<!-- data-validation-min-message to override -->"; | ||
| 134 | + if ($this.data("validationMinMessage")) { | ||
| 135 | + message = $this.data("validationMinMessage"); | ||
| 136 | + } | ||
| 137 | + $this.data("validationMinMessage", message); | ||
| 138 | + $this.data("validationMinMin", min); | ||
| 139 | + } | ||
| 140 | + // --------------------------------------------------------- | ||
| 141 | + // MAXLENGTH | ||
| 142 | + // --------------------------------------------------------- | ||
| 143 | + if ($this.attr("maxlength") !== undefined) { | ||
| 144 | + message = "Too long: Maximum of '" + $this.attr("maxlength") + "' characters<!-- data-validation-maxlength-message to override -->"; | ||
| 145 | + if ($this.data("validationMaxlengthMessage")) { | ||
| 146 | + message = $this.data("validationMaxlengthMessage"); | ||
| 147 | + } | ||
| 148 | + $this.data("validationMaxlengthMessage", message); | ||
| 149 | + $this.data("validationMaxlengthMaxlength", $this.attr("maxlength")); | ||
| 150 | + } | ||
| 151 | + // --------------------------------------------------------- | ||
| 152 | + // MINLENGTH | ||
| 153 | + // --------------------------------------------------------- | ||
| 154 | + if ($this.attr("minlength") !== undefined) { | ||
| 155 | + message = "Too short: Minimum of '" + $this.attr("minlength") + "' characters<!-- data-validation-minlength-message to override -->"; | ||
| 156 | + if ($this.data("validationMinlengthMessage")) { | ||
| 157 | + message = $this.data("validationMinlengthMessage"); | ||
| 158 | + } | ||
| 159 | + $this.data("validationMinlengthMessage", message); | ||
| 160 | + $this.data("validationMinlengthMinlength", $this.attr("minlength")); | ||
| 161 | + } | ||
| 162 | + // --------------------------------------------------------- | ||
| 163 | + // REQUIRED | ||
| 164 | + // --------------------------------------------------------- | ||
| 165 | + if ($this.attr("required") !== undefined || $this.attr("aria-required") !== undefined) { | ||
| 166 | + message = settings.builtInValidators.required.message; | ||
| 167 | + if ($this.data("validationRequiredMessage")) { | ||
| 168 | + message = $this.data("validationRequiredMessage"); | ||
| 169 | + } | ||
| 170 | + $this.data("validationRequiredMessage", message); | ||
| 171 | + } | ||
| 172 | + // --------------------------------------------------------- | ||
| 173 | + // NUMBER | ||
| 174 | + // --------------------------------------------------------- | ||
| 175 | + if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "number") { | ||
| 176 | + message = settings.builtInValidators.number.message; | ||
| 177 | + if ($this.data("validationNumberMessage")) { | ||
| 178 | + message = $this.data("validationNumberMessage"); | ||
| 179 | + } | ||
| 180 | + $this.data("validationNumberMessage", message); | ||
| 181 | + } | ||
| 182 | + // --------------------------------------------------------- | ||
| 183 | |||
| 184 | + // --------------------------------------------------------- | ||
| 185 | + if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "email") { | ||
| 186 | + message = "Not a valid email address<!-- data-validator-validemail-message to override -->"; | ||
| 187 | + if ($this.data("validationValidemailMessage")) { | ||
| 188 | + message = $this.data("validationValidemailMessage"); | ||
| 189 | + } else if ($this.data("validationEmailMessage")) { | ||
| 190 | + message = $this.data("validationEmailMessage"); | ||
| 191 | + } | ||
| 192 | + $this.data("validationValidemailMessage", message); | ||
| 193 | + } | ||
| 194 | + // --------------------------------------------------------- | ||
| 195 | + // MINCHECKED | ||
| 196 | + // --------------------------------------------------------- | ||
| 197 | + if ($this.attr("minchecked") !== undefined) { | ||
| 198 | + message = "Not enough options checked; Minimum of '" + $this.attr("minchecked") + "' required<!-- data-validation-minchecked-message to override -->"; | ||
| 199 | + if ($this.data("validationMincheckedMessage")) { | ||
| 200 | + message = $this.data("validationMincheckedMessage"); | ||
| 201 | + } | ||
| 202 | + $this.data("validationMincheckedMessage", message); | ||
| 203 | + $this.data("validationMincheckedMinchecked", $this.attr("minchecked")); | ||
| 204 | + } | ||
| 205 | + // --------------------------------------------------------- | ||
| 206 | + // MAXCHECKED | ||
| 207 | + // --------------------------------------------------------- | ||
| 208 | + if ($this.attr("maxchecked") !== undefined) { | ||
| 209 | + message = "Too many options checked; Maximum of '" + $this.attr("maxchecked") + "' required<!-- data-validation-maxchecked-message to override -->"; | ||
| 210 | + if ($this.data("validationMaxcheckedMessage")) { | ||
| 211 | + message = $this.data("validationMaxcheckedMessage"); | ||
| 212 | + } | ||
| 213 | + $this.data("validationMaxcheckedMessage", message); | ||
| 214 | + $this.data("validationMaxcheckedMaxchecked", $this.attr("maxchecked")); | ||
| 215 | + } | ||
| 216 | + } | ||
| 217 | + | ||
| 218 | + // ============================================================= | ||
| 219 | + // COLLECT VALIDATOR NAMES | ||
| 220 | + // ============================================================= | ||
| 221 | + | ||
| 222 | + // Get named validators | ||
| 223 | + if ($this.data("validation") !== undefined) { | ||
| 224 | + validatorNames = $this.data("validation").split(","); | ||
| 225 | + } | ||
| 226 | + | ||
| 227 | + // Get extra ones defined on the element's data attributes | ||
| 228 | + $.each($this.data(), function (i, el) { | ||
| 229 | + var parts = i.replace(/([A-Z])/g, ",$1").split(","); | ||
| 230 | + if (parts[0] === "validation" && parts[1]) { | ||
| 231 | + validatorNames.push(parts[1]); | ||
| 232 | + } | ||
| 233 | + }); | ||
| 234 | + | ||
| 235 | + // ============================================================= | ||
| 236 | + // NORMALISE VALIDATOR NAMES | ||
| 237 | + // ============================================================= | ||
| 238 | + | ||
| 239 | + var validatorNamesToInspect = validatorNames; | ||
| 240 | + var newValidatorNamesToInspect = []; | ||
| 241 | + | ||
| 242 | + do // repeatedly expand 'shortcut' validators into their real validators | ||
| 243 | + { | ||
| 244 | + // Uppercase only the first letter of each name | ||
| 245 | + $.each(validatorNames, function (i, el) { | ||
| 246 | + validatorNames[i] = formatValidatorName(el); | ||
| 247 | + }); | ||
| 248 | + | ||
| 249 | + // Remove duplicate validator names | ||
| 250 | + validatorNames = $.unique(validatorNames); | ||
| 251 | + | ||
| 252 | + // Pull out the new validator names from each shortcut | ||
| 253 | + newValidatorNamesToInspect = []; | ||
| 254 | + $.each(validatorNamesToInspect, function(i, el) { | ||
| 255 | + if ($this.data("validation" + el + "Shortcut") !== undefined) { | ||
| 256 | + // Are these custom validators? | ||
| 257 | + // Pull them out! | ||
| 258 | + $.each($this.data("validation" + el + "Shortcut").split(","), function(i2, el2) { | ||
| 259 | + newValidatorNamesToInspect.push(el2); | ||
| 260 | + }); | ||
| 261 | + } else if (settings.builtInValidators[el.toLowerCase()]) { | ||
| 262 | + // Is this a recognised built-in? | ||
| 263 | + // Pull it out! | ||
| 264 | + var validator = settings.builtInValidators[el.toLowerCase()]; | ||
| 265 | + if (validator.type.toLowerCase() === "shortcut") { | ||
| 266 | + $.each(validator.shortcut.split(","), function (i, el) { | ||
| 267 | + el = formatValidatorName(el); | ||
| 268 | + newValidatorNamesToInspect.push(el); | ||
| 269 | + validatorNames.push(el); | ||
| 270 | + }); | ||
| 271 | + } | ||
| 272 | + } | ||
| 273 | + }); | ||
| 274 | + | ||
| 275 | + validatorNamesToInspect = newValidatorNamesToInspect; | ||
| 276 | + | ||
| 277 | + } while (validatorNamesToInspect.length > 0) | ||
| 278 | + | ||
| 279 | + // ============================================================= | ||
| 280 | + // SET UP VALIDATOR ARRAYS | ||
| 281 | + // ============================================================= | ||
| 282 | + | ||
| 283 | + var validators = {}; | ||
| 284 | + | ||
| 285 | + $.each(validatorNames, function (i, el) { | ||
| 286 | + // Set up the 'override' message | ||
| 287 | + var message = $this.data("validation" + el + "Message"); | ||
| 288 | + var hasOverrideMessage = (message !== undefined); | ||
| 289 | + var foundValidator = false; | ||
| 290 | + message = | ||
| 291 | + ( | ||
| 292 | + message | ||
| 293 | + ? message | ||
| 294 | + : "'" + el + "' validation failed <!-- Add attribute 'data-validation-" + el.toLowerCase() + "-message' to input to change this message -->" | ||
| 295 | + ) | ||
| 296 | + ; | ||
| 297 | + | ||
| 298 | + $.each( | ||
| 299 | + settings.validatorTypes, | ||
| 300 | + function (validatorType, validatorTemplate) { | ||
| 301 | + if (validators[validatorType] === undefined) { | ||
| 302 | + validators[validatorType] = []; | ||
| 303 | + } | ||
| 304 | + if (!foundValidator && $this.data("validation" + el + formatValidatorName(validatorTemplate.name)) !== undefined) { | ||
| 305 | + validators[validatorType].push( | ||
| 306 | + $.extend( | ||
| 307 | + true, | ||
| 308 | + { | ||
| 309 | + name: formatValidatorName(validatorTemplate.name), | ||
| 310 | + message: message | ||
| 311 | + }, | ||
| 312 | + validatorTemplate.init($this, el) | ||
| 313 | + ) | ||
| 314 | + ); | ||
| 315 | + foundValidator = true; | ||
| 316 | + } | ||
| 317 | + } | ||
| 318 | + ); | ||
| 319 | + | ||
| 320 | + if (!foundValidator && settings.builtInValidators[el.toLowerCase()]) { | ||
| 321 | + | ||
| 322 | + var validator = $.extend(true, {}, settings.builtInValidators[el.toLowerCase()]); | ||
| 323 | + if (hasOverrideMessage) { | ||
| 324 | + validator.message = message; | ||
| 325 | + } | ||
| 326 | + var validatorType = validator.type.toLowerCase(); | ||
| 327 | + | ||
| 328 | + if (validatorType === "shortcut") { | ||
| 329 | + foundValidator = true; | ||
| 330 | + } else { | ||
| 331 | + $.each( | ||
| 332 | + settings.validatorTypes, | ||
| 333 | + function (validatorTemplateType, validatorTemplate) { | ||
| 334 | + if (validators[validatorTemplateType] === undefined) { | ||
| 335 | + validators[validatorTemplateType] = []; | ||
| 336 | + } | ||
| 337 | + if (!foundValidator && validatorType === validatorTemplateType.toLowerCase()) { | ||
| 338 | + $this.data("validation" + el + formatValidatorName(validatorTemplate.name), validator[validatorTemplate.name.toLowerCase()]); | ||
| 339 | + validators[validatorType].push( | ||
| 340 | + $.extend( | ||
| 341 | + validator, | ||
| 342 | + validatorTemplate.init($this, el) | ||
| 343 | + ) | ||
| 344 | + ); | ||
| 345 | + foundValidator = true; | ||
| 346 | + } | ||
| 347 | + } | ||
| 348 | + ); | ||
| 349 | + } | ||
| 350 | + } | ||
| 351 | + | ||
| 352 | + if (! foundValidator) { | ||
| 353 | + $.error("Cannot find validation info for '" + el + "'"); | ||
| 354 | + } | ||
| 355 | + }); | ||
| 356 | + | ||
| 357 | + // ============================================================= | ||
| 358 | + // STORE FALLBACK VALUES | ||
| 359 | + // ============================================================= | ||
| 360 | + | ||
| 361 | + $helpBlock.data( | ||
| 362 | + "original-contents", | ||
| 363 | + ( | ||
| 364 | + $helpBlock.data("original-contents") | ||
| 365 | + ? $helpBlock.data("original-contents") | ||
| 366 | + : $helpBlock.html() | ||
| 367 | + ) | ||
| 368 | + ); | ||
| 369 | + | ||
| 370 | + $helpBlock.data( | ||
| 371 | + "original-role", | ||
| 372 | + ( | ||
| 373 | + $helpBlock.data("original-role") | ||
| 374 | + ? $helpBlock.data("original-role") | ||
| 375 | + : $helpBlock.attr("role") | ||
| 376 | + ) | ||
| 377 | + ); | ||
| 378 | + | ||
| 379 | + $controlGroup.data( | ||
| 380 | + "original-classes", | ||
| 381 | + ( | ||
| 382 | + $controlGroup.data("original-clases") | ||
| 383 | + ? $controlGroup.data("original-classes") | ||
| 384 | + : $controlGroup.attr("class") | ||
| 385 | + ) | ||
| 386 | + ); | ||
| 387 | + | ||
| 388 | + $this.data( | ||
| 389 | + "original-aria-invalid", | ||
| 390 | + ( | ||
| 391 | + $this.data("original-aria-invalid") | ||
| 392 | + ? $this.data("original-aria-invalid") | ||
| 393 | + : $this.attr("aria-invalid") | ||
| 394 | + ) | ||
| 395 | + ); | ||
| 396 | + | ||
| 397 | + // ============================================================= | ||
| 398 | + // VALIDATION | ||
| 399 | + // ============================================================= | ||
| 400 | + | ||
| 401 | + $this.bind( | ||
| 402 | + "validation.validation", | ||
| 403 | + function (event, params) { | ||
| 404 | + | ||
| 405 | + var value = getValue($this); | ||
| 406 | + | ||
| 407 | + // Get a list of the errors to apply | ||
| 408 | + var errorsFound = []; | ||
| 409 | + | ||
| 410 | + $.each(validators, function (validatorType, validatorTypeArray) { | ||
| 411 | + if (value || value.length || (params && params.includeEmpty) || (!!settings.validatorTypes[validatorType].blockSubmit && params && !!params.submitting)) { | ||
| 412 | + $.each(validatorTypeArray, function (i, validator) { | ||
| 413 | + if (settings.validatorTypes[validatorType].validate($this, value, validator)) { | ||
| 414 | + errorsFound.push(validator.message); | ||
| 415 | + } | ||
| 416 | + }); | ||
| 417 | + } | ||
| 418 | + }); | ||
| 419 | + | ||
| 420 | + return errorsFound; | ||
| 421 | + } | ||
| 422 | + ); | ||
| 423 | + | ||
| 424 | + $this.bind( | ||
| 425 | + "getValidators.validation", | ||
| 426 | + function () { | ||
| 427 | + return validators; | ||
| 428 | + } | ||
| 429 | + ); | ||
| 430 | + | ||
| 431 | + // ============================================================= | ||
| 432 | + // WATCH FOR CHANGES | ||
| 433 | + // ============================================================= | ||
| 434 | + $this.bind( | ||
| 435 | + "submit.validation", | ||
| 436 | + function () { | ||
| 437 | + return $this.triggerHandler("change.validation", {submitting: true}); | ||
| 438 | + } | ||
| 439 | + ); | ||
| 440 | + $this.bind( | ||
| 441 | + [ | ||
| 442 | + "keyup", | ||
| 443 | + "focus", | ||
| 444 | + "blur", | ||
| 445 | + "click", | ||
| 446 | + "keydown", | ||
| 447 | + "keypress", | ||
| 448 | + "change" | ||
| 449 | + ].join(".validation ") + ".validation", | ||
| 450 | + function (e, params) { | ||
| 451 | + | ||
| 452 | + var value = getValue($this); | ||
| 453 | + | ||
| 454 | + var errorsFound = []; | ||
| 455 | + | ||
| 456 | + $controlGroup.find("input,textarea,select").each(function (i, el) { | ||
| 457 | + var oldCount = errorsFound.length; | ||
| 458 | + $.each($(el).triggerHandler("validation.validation", params), function (j, message) { | ||
| 459 | + errorsFound.push(message); | ||
| 460 | + }); | ||
| 461 | + if (errorsFound.length > oldCount) { | ||
| 462 | + $(el).attr("aria-invalid", "true"); | ||
| 463 | + } else { | ||
| 464 | + var original = $this.data("original-aria-invalid"); | ||
| 465 | + $(el).attr("aria-invalid", (original !== undefined ? original : false)); | ||
| 466 | + } | ||
| 467 | + }); | ||
| 468 | + | ||
| 469 | + $form.find("input,select,textarea").not($this).not("[name=\"" + $this.attr("name") + "\"]").trigger("validationLostFocus.validation"); | ||
| 470 | + | ||
| 471 | + errorsFound = $.unique(errorsFound.sort()); | ||
| 472 | + | ||
| 473 | + // Were there any errors? | ||
| 474 | + if (errorsFound.length) { | ||
| 475 | + // Better flag it up as a warning. | ||
| 476 | + $controlGroup.removeClass("success error").addClass("warning"); | ||
| 477 | + | ||
| 478 | + // How many errors did we find? | ||
| 479 | + if (settings.options.semanticallyStrict && errorsFound.length === 1) { | ||
| 480 | + // Only one? Being strict? Just output it. | ||
| 481 | + $helpBlock.html(errorsFound[0] + | ||
| 482 | + ( settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "" )); | ||
| 483 | + } else { | ||
| 484 | + // Multiple? Being sloppy? Glue them together into an UL. | ||
| 485 | + $helpBlock.html("<ul role=\"alert\"><li>" + errorsFound.join("</li><li>") + "</li></ul>" + | ||
| 486 | + ( settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "" )); | ||
| 487 | + } | ||
| 488 | + } else { | ||
| 489 | + $controlGroup.removeClass("warning error success"); | ||
| 490 | + if (value.length > 0) { | ||
| 491 | + $controlGroup.addClass("success"); | ||
| 492 | + } | ||
| 493 | + $helpBlock.html($helpBlock.data("original-contents")); | ||
| 494 | + } | ||
| 495 | + | ||
| 496 | + if (e.type === "blur") { | ||
| 497 | + $controlGroup.removeClass("success"); | ||
| 498 | + } | ||
| 499 | + } | ||
| 500 | + ); | ||
| 501 | + $this.bind("validationLostFocus.validation", function () { | ||
| 502 | + $controlGroup.removeClass("success"); | ||
| 503 | + }); | ||
| 504 | + }); | ||
| 505 | + }, | ||
| 506 | + destroy : function( ) { | ||
| 507 | + | ||
| 508 | + return this.each( | ||
| 509 | + function() { | ||
| 510 | + | ||
| 511 | + var | ||
| 512 | + $this = $(this), | ||
| 513 | + $controlGroup = $this.parents(".form-group").first(), | ||
| 514 | + $helpBlock = $controlGroup.find(".help-block").first(); | ||
| 515 | + | ||
| 516 | + // remove our events | ||
| 517 | + $this.unbind('.validation'); // events are namespaced. | ||
| 518 | + // reset help text | ||
| 519 | + $helpBlock.html($helpBlock.data("original-contents")); | ||
| 520 | + // reset classes | ||
| 521 | + $controlGroup.attr("class", $controlGroup.data("original-classes")); | ||
| 522 | + // reset aria | ||
| 523 | + $this.attr("aria-invalid", $this.data("original-aria-invalid")); | ||
| 524 | + // reset role | ||
| 525 | + $helpBlock.attr("role", $this.data("original-role")); | ||
| 526 | + // remove all elements we created | ||
| 527 | + if (createdElements.indexOf($helpBlock[0]) > -1) { | ||
| 528 | + $helpBlock.remove(); | ||
| 529 | + } | ||
| 530 | + | ||
| 531 | + } | ||
| 532 | + ); | ||
| 533 | + | ||
| 534 | + }, | ||
| 535 | + collectErrors : function(includeEmpty) { | ||
| 536 | + | ||
| 537 | + var errorMessages = {}; | ||
| 538 | + this.each(function (i, el) { | ||
| 539 | + var $el = $(el); | ||
| 540 | + var name = $el.attr("name"); | ||
| 541 | + var errors = $el.triggerHandler("validation.validation", {includeEmpty: true}); | ||
| 542 | + errorMessages[name] = $.extend(true, errors, errorMessages[name]); | ||
| 543 | + }); | ||
| 544 | + | ||
| 545 | + $.each(errorMessages, function (i, el) { | ||
| 546 | + if (el.length === 0) { | ||
| 547 | + delete errorMessages[i]; | ||
| 548 | + } | ||
| 549 | + }); | ||
| 550 | + | ||
| 551 | + return errorMessages; | ||
| 552 | + | ||
| 553 | + }, | ||
| 554 | + hasErrors: function() { | ||
| 555 | + | ||
| 556 | + var errorMessages = []; | ||
| 557 | + | ||
| 558 | + this.each(function (i, el) { | ||
| 559 | + errorMessages = errorMessages.concat( | ||
| 560 | + $(el).triggerHandler("getValidators.validation") ? $(el).triggerHandler("validation.validation", {submitting: true}) : [] | ||
| 561 | + ); | ||
| 562 | + }); | ||
| 563 | + | ||
| 564 | + return (errorMessages.length > 0); | ||
| 565 | + }, | ||
| 566 | + override : function (newDefaults) { | ||
| 567 | + defaults = $.extend(true, defaults, newDefaults); | ||
| 568 | + } | ||
| 569 | + }, | ||
| 570 | + validatorTypes: { | ||
| 571 | + callback: { | ||
| 572 | + name: "callback", | ||
| 573 | + init: function ($this, name) { | ||
| 574 | + return { | ||
| 575 | + validatorName: name, | ||
| 576 | + callback: $this.data("validation" + name + "Callback"), | ||
| 577 | + lastValue: $this.val(), | ||
| 578 | + lastValid: true, | ||
| 579 | + lastFinished: true | ||
| 580 | + }; | ||
| 581 | + }, | ||
| 582 | + validate: function ($this, value, validator) { | ||
| 583 | + if (validator.lastValue === value && validator.lastFinished) { | ||
| 584 | + return !validator.lastValid; | ||
| 585 | + } | ||
| 586 | + | ||
| 587 | + if (validator.lastFinished === true) | ||
| 588 | + { | ||
| 589 | + validator.lastValue = value; | ||
| 590 | + validator.lastValid = true; | ||
| 591 | + validator.lastFinished = false; | ||
| 592 | + | ||
| 593 | + var rrjqbvValidator = validator; | ||
| 594 | + var rrjqbvThis = $this; | ||
| 595 | + executeFunctionByName( | ||
| 596 | + validator.callback, | ||
| 597 | + window, | ||
| 598 | + $this, | ||
| 599 | + value, | ||
| 600 | + function (data) { | ||
| 601 | + if (rrjqbvValidator.lastValue === data.value) { | ||
| 602 | + rrjqbvValidator.lastValid = data.valid; | ||
| 603 | + if (data.message) { | ||
| 604 | + rrjqbvValidator.message = data.message; | ||
| 605 | + } | ||
| 606 | + rrjqbvValidator.lastFinished = true; | ||
| 607 | + rrjqbvThis.data("validation" + rrjqbvValidator.validatorName + "Message", rrjqbvValidator.message); | ||
| 608 | + // Timeout is set to avoid problems with the events being considered 'already fired' | ||
| 609 | + setTimeout(function () { | ||
| 610 | + rrjqbvThis.trigger("change.validation"); | ||
| 611 | + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst | ||
| 612 | + } | ||
| 613 | + } | ||
| 614 | + ); | ||
| 615 | + } | ||
| 616 | + | ||
| 617 | + return false; | ||
| 618 | + | ||
| 619 | + } | ||
| 620 | + }, | ||
| 621 | + ajax: { | ||
| 622 | + name: "ajax", | ||
| 623 | + init: function ($this, name) { | ||
| 624 | + return { | ||
| 625 | + validatorName: name, | ||
| 626 | + url: $this.data("validation" + name + "Ajax"), | ||
| 627 | + lastValue: $this.val(), | ||
| 628 | + lastValid: true, | ||
| 629 | + lastFinished: true | ||
| 630 | + }; | ||
| 631 | + }, | ||
| 632 | + validate: function ($this, value, validator) { | ||
| 633 | + if (""+validator.lastValue === ""+value && validator.lastFinished === true) { | ||
| 634 | + return validator.lastValid === false; | ||
| 635 | + } | ||
| 636 | + | ||
| 637 | + if (validator.lastFinished === true) | ||
| 638 | + { | ||
| 639 | + validator.lastValue = value; | ||
| 640 | + validator.lastValid = true; | ||
| 641 | + validator.lastFinished = false; | ||
| 642 | + $.ajax({ | ||
| 643 | + url: validator.url, | ||
| 644 | + data: "value=" + value + "&field=" + $this.attr("name"), | ||
| 645 | + dataType: "json", | ||
| 646 | + success: function (data) { | ||
| 647 | + if (""+validator.lastValue === ""+data.value) { | ||
| 648 | + validator.lastValid = !!(data.valid); | ||
| 649 | + if (data.message) { | ||
| 650 | + validator.message = data.message; | ||
| 651 | + } | ||
| 652 | + validator.lastFinished = true; | ||
| 653 | + $this.data("validation" + validator.validatorName + "Message", validator.message); | ||
| 654 | + // Timeout is set to avoid problems with the events being considered 'already fired' | ||
| 655 | + setTimeout(function () { | ||
| 656 | + $this.trigger("change.validation"); | ||
| 657 | + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst | ||
| 658 | + } | ||
| 659 | + }, | ||
| 660 | + failure: function () { | ||
| 661 | + validator.lastValid = true; | ||
| 662 | + validator.message = "ajax call failed"; | ||
| 663 | + validator.lastFinished = true; | ||
| 664 | + $this.data("validation" + validator.validatorName + "Message", validator.message); | ||
| 665 | + // Timeout is set to avoid problems with the events being considered 'already fired' | ||
| 666 | + setTimeout(function () { | ||
| 667 | + $this.trigger("change.validation"); | ||
| 668 | + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst | ||
| 669 | + } | ||
| 670 | + }); | ||
| 671 | + } | ||
| 672 | + | ||
| 673 | + return false; | ||
| 674 | + | ||
| 675 | + } | ||
| 676 | + }, | ||
| 677 | + regex: { | ||
| 678 | + name: "regex", | ||
| 679 | + init: function ($this, name) { | ||
| 680 | + return {regex: regexFromString($this.data("validation" + name + "Regex"))}; | ||
| 681 | + }, | ||
| 682 | + validate: function ($this, value, validator) { | ||
| 683 | + return (!validator.regex.test(value) && ! validator.negative) | ||
| 684 | + || (validator.regex.test(value) && validator.negative); | ||
| 685 | + } | ||
| 686 | + }, | ||
| 687 | + required: { | ||
| 688 | + name: "required", | ||
| 689 | + init: function ($this, name) { | ||
| 690 | + return {}; | ||
| 691 | + }, | ||
| 692 | + validate: function ($this, value, validator) { | ||
| 693 | + return !!(value.length === 0 && ! validator.negative) | ||
| 694 | + || !!(value.length > 0 && validator.negative); | ||
| 695 | + }, | ||
| 696 | + blockSubmit: true | ||
| 697 | + }, | ||
| 698 | + match: { | ||
| 699 | + name: "match", | ||
| 700 | + init: function ($this, name) { | ||
| 701 | + var element = $this.parents("form").first().find("[name=\"" + $this.data("validation" + name + "Match") + "\"]").first(); | ||
| 702 | + element.bind("validation.validation", function () { | ||
| 703 | + $this.trigger("change.validation", {submitting: true}); | ||
| 704 | + }); | ||
| 705 | + return {"element": element}; | ||
| 706 | + }, | ||
| 707 | + validate: function ($this, value, validator) { | ||
| 708 | + return (value !== validator.element.val() && ! validator.negative) | ||
| 709 | + || (value === validator.element.val() && validator.negative); | ||
| 710 | + }, | ||
| 711 | + blockSubmit: true | ||
| 712 | + }, | ||
| 713 | + max: { | ||
| 714 | + name: "max", | ||
| 715 | + init: function ($this, name) { | ||
| 716 | + return {max: $this.data("validation" + name + "Max")}; | ||
| 717 | + }, | ||
| 718 | + validate: function ($this, value, validator) { | ||
| 719 | + return (parseFloat(value, 10) > parseFloat(validator.max, 10) && ! validator.negative) | ||
| 720 | + || (parseFloat(value, 10) <= parseFloat(validator.max, 10) && validator.negative); | ||
| 721 | + } | ||
| 722 | + }, | ||
| 723 | + min: { | ||
| 724 | + name: "min", | ||
| 725 | + init: function ($this, name) { | ||
| 726 | + return {min: $this.data("validation" + name + "Min")}; | ||
| 727 | + }, | ||
| 728 | + validate: function ($this, value, validator) { | ||
| 729 | + return (parseFloat(value) < parseFloat(validator.min) && ! validator.negative) | ||
| 730 | + || (parseFloat(value) >= parseFloat(validator.min) && validator.negative); | ||
| 731 | + } | ||
| 732 | + }, | ||
| 733 | + maxlength: { | ||
| 734 | + name: "maxlength", | ||
| 735 | + init: function ($this, name) { | ||
| 736 | + return {maxlength: $this.data("validation" + name + "Maxlength")}; | ||
| 737 | + }, | ||
| 738 | + validate: function ($this, value, validator) { | ||
| 739 | + return ((value.length > validator.maxlength) && ! validator.negative) | ||
| 740 | + || ((value.length <= validator.maxlength) && validator.negative); | ||
| 741 | + } | ||
| 742 | + }, | ||
| 743 | + minlength: { | ||
| 744 | + name: "minlength", | ||
| 745 | + init: function ($this, name) { | ||
| 746 | + return {minlength: $this.data("validation" + name + "Minlength")}; | ||
| 747 | + }, | ||
| 748 | + validate: function ($this, value, validator) { | ||
| 749 | + return ((value.length < validator.minlength) && ! validator.negative) | ||
| 750 | + || ((value.length >= validator.minlength) && validator.negative); | ||
| 751 | + } | ||
| 752 | + }, | ||
| 753 | + maxchecked: { | ||
| 754 | + name: "maxchecked", | ||
| 755 | + init: function ($this, name) { | ||
| 756 | + var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); | ||
| 757 | + elements.bind("click.validation", function () { | ||
| 758 | + $this.trigger("change.validation", {includeEmpty: true}); | ||
| 759 | + }); | ||
| 760 | + return {maxchecked: $this.data("validation" + name + "Maxchecked"), elements: elements}; | ||
| 761 | + }, | ||
| 762 | + validate: function ($this, value, validator) { | ||
| 763 | + return (validator.elements.filter(":checked").length > validator.maxchecked && ! validator.negative) | ||
| 764 | + || (validator.elements.filter(":checked").length <= validator.maxchecked && validator.negative); | ||
| 765 | + }, | ||
| 766 | + blockSubmit: true | ||
| 767 | + }, | ||
| 768 | + minchecked: { | ||
| 769 | + name: "minchecked", | ||
| 770 | + init: function ($this, name) { | ||
| 771 | + var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); | ||
| 772 | + elements.bind("click.validation", function () { | ||
| 773 | + $this.trigger("change.validation", {includeEmpty: true}); | ||
| 774 | + }); | ||
| 775 | + return {minchecked: $this.data("validation" + name + "Minchecked"), elements: elements}; | ||
| 776 | + }, | ||
| 777 | + validate: function ($this, value, validator) { | ||
| 778 | + return (validator.elements.filter(":checked").length < validator.minchecked && ! validator.negative) | ||
| 779 | + || (validator.elements.filter(":checked").length >= validator.minchecked && validator.negative); | ||
| 780 | + }, | ||
| 781 | + blockSubmit: true | ||
| 782 | + } | ||
| 783 | + }, | ||
| 784 | + builtInValidators: { | ||
| 785 | + email: { | ||
| 786 | + name: "Email", | ||
| 787 | + type: "shortcut", | ||
| 788 | + shortcut: "validemail" | ||
| 789 | + }, | ||
| 790 | + validemail: { | ||
| 791 | + name: "Validemail", | ||
| 792 | + type: "regex", | ||
| 793 | + regex: "[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,4}", | ||
| 794 | + message: "Not a valid email address<!-- data-validator-validemail-message to override -->" | ||
| 795 | + }, | ||
| 796 | + passwordagain: { | ||
| 797 | + name: "Passwordagain", | ||
| 798 | + type: "match", | ||
| 799 | + match: "password", | ||
| 800 | + message: "Does not match the given password<!-- data-validator-paswordagain-message to override -->" | ||
| 801 | + }, | ||
| 802 | + positive: { | ||
| 803 | + name: "Positive", | ||
| 804 | + type: "shortcut", | ||
| 805 | + shortcut: "number,positivenumber" | ||
| 806 | + }, | ||
| 807 | + negative: { | ||
| 808 | + name: "Negative", | ||
| 809 | + type: "shortcut", | ||
| 810 | + shortcut: "number,negativenumber" | ||
| 811 | + }, | ||
| 812 | + number: { | ||
| 813 | + name: "Number", | ||
| 814 | + type: "regex", | ||
| 815 | + regex: "([+-]?\\\d+(\\\.\\\d*)?([eE][+-]?[0-9]+)?)?", | ||
| 816 | + message: "Must be a number<!-- data-validator-number-message to override -->" | ||
| 817 | + }, | ||
| 818 | + integer: { | ||
| 819 | + name: "Integer", | ||
| 820 | + type: "regex", | ||
| 821 | + regex: "[+-]?\\\d+", | ||
| 822 | + message: "No decimal places allowed<!-- data-validator-integer-message to override -->" | ||
| 823 | + }, | ||
| 824 | + positivenumber: { | ||
| 825 | + name: "Positivenumber", | ||
| 826 | + type: "min", | ||
| 827 | + min: 0, | ||
| 828 | + message: "Must be a positive number<!-- data-validator-positivenumber-message to override -->" | ||
| 829 | + }, | ||
| 830 | + negativenumber: { | ||
| 831 | + name: "Negativenumber", | ||
| 832 | + type: "max", | ||
| 833 | + max: 0, | ||
| 834 | + message: "Must be a negative number<!-- data-validator-negativenumber-message to override -->" | ||
| 835 | + }, | ||
| 836 | + required: { | ||
| 837 | + name: "Required", | ||
| 838 | + type: "required", | ||
| 839 | + message: "This is required<!-- data-validator-required-message to override -->" | ||
| 840 | + }, | ||
| 841 | + checkone: { | ||
| 842 | + name: "Checkone", | ||
| 843 | + type: "minchecked", | ||
| 844 | + minchecked: 1, | ||
| 845 | + message: "Check at least one option<!-- data-validation-checkone-message to override -->" | ||
| 846 | + } | ||
| 847 | + } | ||
| 848 | + }; | ||
| 849 | + | ||
| 850 | + var formatValidatorName = function (name) { | ||
| 851 | + return name | ||
| 852 | + .toLowerCase() | ||
| 853 | + .replace( | ||
| 854 | + /(^|\s)([a-z])/g , | ||
| 855 | + function(m,p1,p2) { | ||
| 856 | + return p1+p2.toUpperCase(); | ||
| 857 | + } | ||
| 858 | + ) | ||
| 859 | + ; | ||
| 860 | + }; | ||
| 861 | + | ||
| 862 | + var getValue = function ($this) { | ||
| 863 | + // Extract the value we're talking about | ||
| 864 | + var value = $this.val(); | ||
| 865 | + var type = $this.attr("type"); | ||
| 866 | + if (type === "checkbox") { | ||
| 867 | + value = ($this.is(":checked") ? value : ""); | ||
| 868 | + } | ||
| 869 | + if (type === "radio") { | ||
| 870 | + value = ($('input[name="' + $this.attr("name") + '"]:checked').length > 0 ? value : ""); | ||
| 871 | + } | ||
| 872 | + return value; | ||
| 873 | + }; | ||
| 874 | + | ||
| 875 | + function regexFromString(inputstring) { | ||
| 876 | + return new RegExp("^" + inputstring + "$"); | ||
| 877 | + } | ||
| 878 | + | ||
| 879 | + /** | ||
| 880 | + * Thanks to Jason Bunting via StackOverflow.com | ||
| 881 | + * | ||
| 882 | + * http://stackoverflow.com/questions/359788/how-to-execute-a-javascript-function-when-i-have-its-name-as-a-string#answer-359910 | ||
| 883 | + * Short link: http://tinyurl.com/executeFunctionByName | ||
| 884 | + **/ | ||
| 885 | + function executeFunctionByName(functionName, context /*, args*/) { | ||
| 886 | + var args = Array.prototype.slice.call(arguments).splice(2); | ||
| 887 | + var namespaces = functionName.split("."); | ||
| 888 | + var func = namespaces.pop(); | ||
| 889 | + for(var i = 0; i < namespaces.length; i++) { | ||
| 890 | + context = context[namespaces[i]]; | ||
| 891 | + } | ||
| 892 | + return context[func].apply(this, args); | ||
| 893 | + } | ||
| 894 | + | ||
| 895 | + $.fn.jqBootstrapValidation = function( method ) { | ||
| 896 | + | ||
| 897 | + if ( defaults.methods[method] ) { | ||
| 898 | + return defaults.methods[method].apply( this, Array.prototype.slice.call( arguments, 1 )); | ||
| 899 | + } else if ( typeof method === 'object' || ! method ) { | ||
| 900 | + return defaults.methods.init.apply( this, arguments ); | ||
| 901 | + } else { | ||
| 902 | + $.error( 'Method ' + method + ' does not exist on jQuery.jqBootstrapValidation' ); | ||
| 903 | + return null; | ||
| 904 | + } | ||
| 905 | + | ||
| 906 | + }; | ||
| 907 | + | ||
| 908 | + $.jqBootstrapValidation = function (options) { | ||
| 909 | + $(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this,arguments); | ||
| 910 | + }; | ||
| 911 | + | ||
| 912 | +})( jQuery ); |
views/js/jquery.easing.min.js
0 → 100644
| 1 | +/* | ||
| 2 | + * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ | ||
| 3 | + * | ||
| 4 | + * Uses the built in easing capabilities added In jQuery 1.1 | ||
| 5 | + * to offer multiple easing options | ||
| 6 | + * | ||
| 7 | + * TERMS OF USE - EASING EQUATIONS | ||
| 8 | + * | ||
| 9 | + * Open source under the BSD License. | ||
| 10 | + * | ||
| 11 | + * Copyright © 2001 Robert Penner | ||
| 12 | + * All rights reserved. | ||
| 13 | + * | ||
| 14 | + * TERMS OF USE - jQuery Easing | ||
| 15 | + * | ||
| 16 | + * Open source under the BSD License. | ||
| 17 | + * | ||
| 18 | + * Copyright © 2008 George McGinley Smith | ||
| 19 | + * All rights reserved. | ||
| 20 | + * | ||
| 21 | + * Redistribution and use in source and binary forms, with or without modification, | ||
| 22 | + * are permitted provided that the following conditions are met: | ||
| 23 | + * | ||
| 24 | + * Redistributions of source code must retain the above copyright notice, this list of | ||
| 25 | + * conditions and the following disclaimer. | ||
| 26 | + * Redistributions in binary form must reproduce the above copyright notice, this list | ||
| 27 | + * of conditions and the following disclaimer in the documentation and/or other materials | ||
| 28 | + * provided with the distribution. | ||
| 29 | + * | ||
| 30 | + * Neither the name of the author nor the names of contributors may be used to endorse | ||
| 31 | + * or promote products derived from this software without specific prior written permission. | ||
| 32 | + * | ||
| 33 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
| 34 | + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
| 35 | + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
| 36 | + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
| 37 | + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE | ||
| 38 | + * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | ||
| 39 | + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
| 40 | + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
| 41 | + * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 42 | + * | ||
| 43 | +*/ | ||
| 44 | +jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}}); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/jquery.isotope.min.js
0 → 100644
| 1 | +/** | ||
| 2 | + * Isotope v1.5.25 | ||
| 3 | + * An exquisite jQuery plugin for magical layouts | ||
| 4 | + * http://isotope.metafizzy.co | ||
| 5 | + * | ||
| 6 | + * Commercial use requires one-time purchase of a commercial license | ||
| 7 | + * http://isotope.metafizzy.co/docs/license.html | ||
| 8 | + * | ||
| 9 | + * Non-commercial use is licensed under the MIT License | ||
| 10 | + * | ||
| 11 | + * Copyright 2013 Metafizzy | ||
| 12 | + */ | ||
| 13 | +(function(a,b,c){"use strict";var d=a.document,e=a.Modernizr,f=function(a){return a.charAt(0).toUpperCase()+a.slice(1)},g="Moz Webkit O Ms".split(" "),h=function(a){var b=d.documentElement.style,c;if(typeof b[a]=="string")return a;a=f(a);for(var e=0,h=g.length;e<h;e++){c=g[e]+a;if(typeof b[c]=="string")return c}},i=h("transform"),j=h("transitionProperty"),k={csstransforms:function(){return!!i},csstransforms3d:function(){var a=!!h("perspective");if(a){var c=" -o- -moz- -ms- -webkit- -khtml- ".split(" "),d="@media ("+c.join("transform-3d),(")+"modernizr)",e=b("<style>"+d+"{#modernizr{height:3px}}"+"</style>").appendTo("head"),f=b('<div id="modernizr" />').appendTo("html");a=f.height()===3,f.remove(),e.remove()}return a},csstransitions:function(){return!!j}},l;if(e)for(l in k)e.hasOwnProperty(l)||e.addTest(l,k[l]);else{e=a.Modernizr={_version:"1.6ish: miniModernizr for Isotope"};var m=" ",n;for(l in k)n=k[l](),e[l]=n,m+=" "+(n?"":"no-")+l;b("html").addClass(m)}if(e.csstransforms){var o=e.csstransforms3d?{translate:function(a){return"translate3d("+a[0]+"px, "+a[1]+"px, 0) "},scale:function(a){return"scale3d("+a+", "+a+", 1) "}}:{translate:function(a){return"translate("+a[0]+"px, "+a[1]+"px) "},scale:function(a){return"scale("+a+") "}},p=function(a,c,d){var e=b.data(a,"isoTransform")||{},f={},g,h={},j;f[c]=d,b.extend(e,f);for(g in e)j=e[g],h[g]=o[g](j);var k=h.translate||"",l=h.scale||"",m=k+l;b.data(a,"isoTransform",e),a.style[i]=m};b.cssNumber.scale=!0,b.cssHooks.scale={set:function(a,b){p(a,"scale",b)},get:function(a,c){var d=b.data(a,"isoTransform");return d&&d.scale?d.scale:1}},b.fx.step.scale=function(a){b.cssHooks.scale.set(a.elem,a.now+a.unit)},b.cssNumber.translate=!0,b.cssHooks.translate={set:function(a,b){p(a,"translate",b)},get:function(a,c){var d=b.data(a,"isoTransform");return d&&d.translate?d.translate:[0,0]}}}var q,r;e.csstransitions&&(q={WebkitTransitionProperty:"webkitTransitionEnd",MozTransitionProperty:"transitionend",OTransitionProperty:"oTransitionEnd otransitionend",transitionProperty:"transitionend"}[j],r=h("transitionDuration"));var s=b.event,t=b.event.handle?"handle":"dispatch",u;s.special.smartresize={setup:function(){b(this).bind("resize",s.special.smartresize.handler)},teardown:function(){b(this).unbind("resize",s.special.smartresize.handler)},handler:function(a,b){var c=this,d=arguments;a.type="smartresize",u&&clearTimeout(u),u=setTimeout(function(){s[t].apply(c,d)},b==="execAsap"?0:100)}},b.fn.smartresize=function(a){return a?this.bind("smartresize",a):this.trigger("smartresize",["execAsap"])},b.Isotope=function(a,c,d){this.element=b(c),this._create(a),this._init(d)};var v=["width","height"],w=b(a);b.Isotope.settings={resizable:!0,layoutMode:"masonry",containerClass:"isotope",itemClass:"isotope-item",hiddenClass:"isotope-hidden",hiddenStyle:{opacity:0,scale:.001},visibleStyle:{opacity:1,scale:1},containerStyle:{position:"relative",overflow:"hidden"},animationEngine:"best-available",animationOptions:{queue:!1,duration:800},sortBy:"original-order",sortAscending:!0,resizesContainer:!0,transformsEnabled:!0,itemPositionDataEnabled:!1},b.Isotope.prototype={_create:function(a){this.options=b.extend({},b.Isotope.settings,a),this.styleQueue=[],this.elemCount=0;var c=this.element[0].style;this.originalStyle={};var d=v.slice(0);for(var e in this.options.containerStyle)d.push(e);for(var f=0,g=d.length;f<g;f++)e=d[f],this.originalStyle[e]=c[e]||"";this.element.css(this.options.containerStyle),this._updateAnimationEngine(),this._updateUsingTransforms();var h={"original-order":function(a,b){return b.elemCount++,b.elemCount},random:function(){return Math.random()}};this.options.getSortData=b.extend(this.options.getSortData,h),this.reloadItems(),this.offset={left:parseInt(this.element.css("padding-left")||0,10),top:parseInt(this.element.css("padding-top")||0,10)};var i=this;setTimeout(function(){i.element.addClass(i.options.containerClass)},0),this.options.resizable&&w.bind("smartresize.isotope",function(){i.resize()}),this.element.delegate("."+this.options.hiddenClass,"click",function(){return!1})},_getAtoms:function(a){var b=this.options.itemSelector,c=b?a.filter(b).add(a.find(b)):a,d={position:"absolute"};return c=c.filter(function(a,b){return b.nodeType===1}),this.usingTransforms&&(d.left=0,d.top=0),c.css(d).addClass(this.options.itemClass),this.updateSortData(c,!0),c},_init:function(a){this.$filteredAtoms=this._filter(this.$allAtoms),this._sort(),this.reLayout(a)},option:function(a){if(b.isPlainObject(a)){this.options=b.extend(!0,this.options,a);var c;for(var d in a)c="_update"+f(d),this[c]&&this[c]()}},_updateAnimationEngine:function(){var a=this.options.animationEngine.toLowerCase().replace(/[ _\-]/g,""),b;switch(a){case"css":case"none":b=!1;break;case"jquery":b=!0;break;default:b=!e.csstransitions}this.isUsingJQueryAnimation=b,this._updateUsingTransforms()},_updateTransformsEnabled:function(){this._updateUsingTransforms()},_updateUsingTransforms:function(){var a=this.usingTransforms=this.options.transformsEnabled&&e.csstransforms&&e.csstransitions&&!this.isUsingJQueryAnimation;a||(delete this.options.hiddenStyle.scale,delete this.options.visibleStyle.scale),this.getPositionStyles=a?this._translate:this._positionAbs},_filter:function(a){var b=this.options.filter===""?"*":this.options.filter;if(!b)return a;var c=this.options.hiddenClass,d="."+c,e=a.filter(d),f=e;if(b!=="*"){f=e.filter(b);var g=a.not(d).not(b).addClass(c);this.styleQueue.push({$el:g,style:this.options.hiddenStyle})}return this.styleQueue.push({$el:f,style:this.options.visibleStyle}),f.removeClass(c),a.filter(b)},updateSortData:function(a,c){var d=this,e=this.options.getSortData,f,g;a.each(function(){f=b(this),g={};for(var a in e)!c&&a==="original-order"?g[a]=b.data(this,"isotope-sort-data")[a]:g[a]=e[a](f,d);b.data(this,"isotope-sort-data",g)})},_sort:function(){var a=this.options.sortBy,b=this._getSorter,c=this.options.sortAscending?1:-1,d=function(d,e){var f=b(d,a),g=b(e,a);return f===g&&a!=="original-order"&&(f=b(d,"original-order"),g=b(e,"original-order")),(f>g?1:f<g?-1:0)*c};this.$filteredAtoms.sort(d)},_getSorter:function(a,c){return b.data(a,"isotope-sort-data")[c]},_translate:function(a,b){return{translate:[a,b]}},_positionAbs:function(a,b){return{left:a,top:b}},_pushPosition:function(a,b,c){b=Math.round(b+this.offset.left),c=Math.round(c+this.offset.top);var d=this.getPositionStyles(b,c);this.styleQueue.push({$el:a,style:d}),this.options.itemPositionDataEnabled&&a.data("isotope-item-position",{x:b,y:c})},layout:function(a,b){var c=this.options.layoutMode;this["_"+c+"Layout"](a);if(this.options.resizesContainer){var d=this["_"+c+"GetContainerSize"]();this.styleQueue.push({$el:this.element,style:d})}this._processStyleQueue(a,b),this.isLaidOut=!0},_processStyleQueue:function(a,c){var d=this.isLaidOut?this.isUsingJQueryAnimation?"animate":"css":"css",f=this.options.animationOptions,g=this.options.onLayout,h,i,j,k;i=function(a,b){b.$el[d](b.style,f)};if(this._isInserting&&this.isUsingJQueryAnimation)i=function(a,b){h=b.$el.hasClass("no-transition")?"css":d,b.$el[h](b.style,f)};else if(c||g||f.complete){var l=!1,m=[c,g,f.complete],n=this;j=!0,k=function(){if(l)return;var b;for(var c=0,d=m.length;c<d;c++)b=m[c],typeof b=="function"&&b.call(n.element,a,n);l=!0};if(this.isUsingJQueryAnimation&&d==="animate")f.complete=k,j=!1;else if(e.csstransitions){var o=0,p=this.styleQueue[0],s=p&&p.$el,t;while(!s||!s.length){t=this.styleQueue[o++];if(!t)return;s=t.$el}var u=parseFloat(getComputedStyle(s[0])[r]);u>0&&(i=function(a,b){b.$el[d](b.style,f).one(q,k)},j=!1)}}b.each(this.styleQueue,i),j&&k(),this.styleQueue=[]},resize:function(){this["_"+this.options.layoutMode+"ResizeChanged"]()&&this.reLayout()},reLayout:function(a){this["_"+this.options.layoutMode+"Reset"](),this.layout(this.$filteredAtoms,a)},addItems:function(a,b){var c=this._getAtoms(a);this.$allAtoms=this.$allAtoms.add(c),b&&b(c)},insert:function(a,b){this.element.append(a);var c=this;this.addItems(a,function(a){var d=c._filter(a);c._addHideAppended(d),c._sort(),c.reLayout(),c._revealAppended(d,b)})},appended:function(a,b){var c=this;this.addItems(a,function(a){c._addHideAppended(a),c.layout(a),c._revealAppended(a,b)})},_addHideAppended:function(a){this.$filteredAtoms=this.$filteredAtoms.add(a),a.addClass("no-transition"),this._isInserting=!0,this.styleQueue.push({$el:a,style:this.options.hiddenStyle})},_revealAppended:function(a,b){var c=this;setTimeout(function(){a.removeClass("no-transition"),c.styleQueue.push({$el:a,style:c.options.visibleStyle}),c._isInserting=!1,c._processStyleQueue(a,b)},10)},reloadItems:function(){this.$allAtoms=this._getAtoms(this.element.children())},remove:function(a,b){this.$allAtoms=this.$allAtoms.not(a),this.$filteredAtoms=this.$filteredAtoms.not(a);var c=this,d=function(){a.remove(),b&&b.call(c.element)};a.filter(":not(."+this.options.hiddenClass+")").length?(this.styleQueue.push({$el:a,style:this.options.hiddenStyle}),this._sort(),this.reLayout(d)):d()},shuffle:function(a){this.updateSortData(this.$allAtoms),this.options.sortBy="random",this._sort(),this.reLayout(a)},destroy:function(){var a=this.usingTransforms,b=this.options;this.$allAtoms.removeClass(b.hiddenClass+" "+b.itemClass).each(function(){var b=this.style;b.position="",b.top="",b.left="",b.opacity="",a&&(b[i]="")});var c=this.element[0].style;for(var d in this.originalStyle)c[d]=this.originalStyle[d];this.element.unbind(".isotope").undelegate("."+b.hiddenClass,"click").removeClass(b.containerClass).removeData("isotope"),w.unbind(".isotope")},_getSegments:function(a){var b=this.options.layoutMode,c=a?"rowHeight":"columnWidth",d=a?"height":"width",e=a?"rows":"cols",g=this.element[d](),h,i=this.options[b]&&this.options[b][c]||this.$filteredAtoms["outer"+f(d)](!0)||g;h=Math.floor(g/i),h=Math.max(h,1),this[b][e]=h,this[b][c]=i},_checkIfSegmentsChanged:function(a){var b=this.options.layoutMode,c=a?"rows":"cols",d=this[b][c];return this._getSegments(a),this[b][c]!==d},_masonryReset:function(){this.masonry={},this._getSegments();var a=this.masonry.cols;this.masonry.colYs=[];while(a--)this.masonry.colYs.push(0)},_masonryLayout:function(a){var c=this,d=c.masonry;a.each(function(){var a=b(this),e=Math.ceil(a.outerWidth(!0)/d.columnWidth);e=Math.min(e,d.cols);if(e===1)c._masonryPlaceBrick(a,d.colYs);else{var f=d.cols+1-e,g=[],h,i;for(i=0;i<f;i++)h=d.colYs.slice(i,i+e),g[i]=Math.max.apply(Math,h);c._masonryPlaceBrick(a,g)}})},_masonryPlaceBrick:function(a,b){var c=Math.min.apply(Math,b),d=0;for(var e=0,f=b.length;e<f;e++)if(b[e]===c){d=e;break}var g=this.masonry.columnWidth*d,h=c;this._pushPosition(a,g,h);var i=c+a.outerHeight(!0),j=this.masonry.cols+1-f;for(e=0;e<j;e++)this.masonry.colYs[d+e]=i},_masonryGetContainerSize:function(){var a=Math.max.apply(Math,this.masonry.colYs);return{height:a}},_masonryResizeChanged:function(){return this._checkIfSegmentsChanged()},_fitRowsReset:function(){this.fitRows={x:0,y:0,height:0}},_fitRowsLayout:function(a){var c=this,d=this.element.width(),e=this.fitRows;a.each(function(){var a=b(this),f=a.outerWidth(!0),g=a.outerHeight(!0);e.x!==0&&f+e.x>d&&(e.x=0,e.y=e.height),c._pushPosition(a,e.x,e.y),e.height=Math.max(e.y+g,e.height),e.x+=f})},_fitRowsGetContainerSize:function(){return{height:this.fitRows.height}},_fitRowsResizeChanged:function(){return!0},_cellsByRowReset:function(){this.cellsByRow={index:0},this._getSegments(),this._getSegments(!0)},_cellsByRowLayout:function(a){var c=this,d=this.cellsByRow;a.each(function(){var a=b(this),e=d.index%d.cols,f=Math.floor(d.index/d.cols),g=(e+.5)*d.columnWidth-a.outerWidth(!0)/2,h=(f+.5)*d.rowHeight-a.outerHeight(!0)/2;c._pushPosition(a,g,h),d.index++})},_cellsByRowGetContainerSize:function(){return{height:Math.ceil(this.$filteredAtoms.length/this.cellsByRow.cols)*this.cellsByRow.rowHeight+this.offset.top}},_cellsByRowResizeChanged:function(){return this._checkIfSegmentsChanged()},_straightDownReset:function(){this.straightDown={y:0}},_straightDownLayout:function(a){var c=this;a.each(function(a){var d=b(this);c._pushPosition(d,0,c.straightDown.y),c.straightDown.y+=d.outerHeight(!0)})},_straightDownGetContainerSize:function(){return{height:this.straightDown.y}},_straightDownResizeChanged:function(){return!0},_masonryHorizontalReset:function(){this.masonryHorizontal={},this._getSegments(!0);var a=this.masonryHorizontal.rows;this.masonryHorizontal.rowXs=[];while(a--)this.masonryHorizontal.rowXs.push(0)},_masonryHorizontalLayout:function(a){var c=this,d=c.masonryHorizontal;a.each(function(){var a=b(this),e=Math.ceil(a.outerHeight(!0)/d.rowHeight);e=Math.min(e,d.rows);if(e===1)c._masonryHorizontalPlaceBrick(a,d.rowXs);else{var f=d.rows+1-e,g=[],h,i;for(i=0;i<f;i++)h=d.rowXs.slice(i,i+e),g[i]=Math.max.apply(Math,h);c._masonryHorizontalPlaceBrick(a,g)}})},_masonryHorizontalPlaceBrick:function(a,b){var c=Math.min.apply(Math,b),d=0;for(var e=0,f=b.length;e<f;e++)if(b[e]===c){d=e;break}var g=c,h=this.masonryHorizontal.rowHeight*d;this._pushPosition(a,g,h);var i=c+a.outerWidth(!0),j=this.masonryHorizontal.rows+1-f;for(e=0;e<j;e++)this.masonryHorizontal.rowXs[d+e]=i},_masonryHorizontalGetContainerSize:function(){var a=Math.max.apply(Math,this.masonryHorizontal.rowXs);return{width:a}},_masonryHorizontalResizeChanged:function(){return this._checkIfSegmentsChanged(!0)},_fitColumnsReset:function(){this.fitColumns={x:0,y:0,width:0}},_fitColumnsLayout:function(a){var c=this,d=this.element.height(),e=this.fitColumns;a.each(function(){var a=b(this),f=a.outerWidth(!0),g=a.outerHeight(!0);e.y!==0&&g+e.y>d&&(e.x=e.width,e.y=0),c._pushPosition(a,e.x,e.y),e.width=Math.max(e.x+f,e.width),e.y+=g})},_fitColumnsGetContainerSize:function(){return{width:this.fitColumns.width}},_fitColumnsResizeChanged:function(){return!0},_cellsByColumnReset:function(){this.cellsByColumn={index:0},this._getSegments(),this._getSegments(!0)},_cellsByColumnLayout:function(a){var c=this,d=this.cellsByColumn;a.each(function(){var a=b(this),e=Math.floor(d.index/d.rows),f=d.index%d.rows,g=(e+.5)*d.columnWidth-a.outerWidth(!0)/2,h=(f+.5)*d.rowHeight-a.outerHeight(!0)/2;c._pushPosition(a,g,h),d.index++})},_cellsByColumnGetContainerSize:function(){return{width:Math.ceil(this.$filteredAtoms.length/this.cellsByColumn.rows)*this.cellsByColumn.columnWidth}},_cellsByColumnResizeChanged:function(){return this._checkIfSegmentsChanged(!0)},_straightAcrossReset:function(){this.straightAcross={x:0}},_straightAcrossLayout:function(a){var c=this;a.each(function(a){var d=b(this);c._pushPosition(d,c.straightAcross.x,0),c.straightAcross.x+=d.outerWidth(!0)})},_straightAcrossGetContainerSize:function(){return{width:this.straightAcross.x}},_straightAcrossResizeChanged:function(){return!0}},b.fn.imagesLoaded=function(a){function h(){a.call(c,d)}function i(a){var c=a.target;c.src!==f&&b.inArray(c,g)===-1&&(g.push(c),--e<=0&&(setTimeout(h),d.unbind(".imagesLoaded",i)))}var c=this,d=c.find("img").add(c.filter("img")),e=d.length,f="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==",g=[];return e||h(),d.bind("load.imagesLoaded error.imagesLoaded",i).each(function(){var a=this.src;this.src=f,this.src=a}),c};var x=function(b){a.console&&a.console.error(b)};b.fn.isotope=function(a,c){if(typeof a=="string"){var d=Array.prototype.slice.call(arguments,1);this.each(function(){var c=b.data(this,"isotope");if(!c){x("cannot call methods on isotope prior to initialization; attempted to call method '"+a+"'");return}if(!b.isFunction(c[a])||a.charAt(0)==="_"){x("no such method '"+a+"' for isotope instance");return}c[a].apply(c,d)})}else this.each(function(){var d=b.data(this,"isotope");d?(d.option(a),d._init(c)):b.data(this,"isotope",new b.Isotope(a,this,c))});return this}})(window,jQuery); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/jquery.js
0 → 100644
| 1 | +/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ | ||
| 2 | +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; | ||
| 3 | +if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px") | ||
| 4 | +},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m}); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/settings-script.js
0 → 100644
| 1 | +jQuery(document).ready(function($) { | ||
| 2 | + | ||
| 3 | + | ||
| 4 | + $("#settings-button").click(function() { | ||
| 5 | + $("#theme-settings").toggleClass("active"); | ||
| 6 | + $(this).toggleClass("active"); | ||
| 7 | + | ||
| 8 | + }); | ||
| 9 | + | ||
| 10 | + | ||
| 11 | + | ||
| 12 | + $(".gradient1").click(function() { | ||
| 13 | + | ||
| 14 | + | ||
| 15 | + | ||
| 16 | + $('<style />', { | ||
| 17 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#e84040; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#e84040;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #e84040;}#services i.fa, #testimonials {background:#e84040;} ' | ||
| 18 | + }).appendTo('head'); | ||
| 19 | + | ||
| 20 | + | ||
| 21 | + }); | ||
| 22 | + | ||
| 23 | + $(".gradient2").click(function() { | ||
| 24 | + | ||
| 25 | + $('<style />', { | ||
| 26 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#1D4079; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#1D4079;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #1D4079;}#services i.fa, #testimonials {background:#1D4079;}' | ||
| 27 | + }).appendTo('head'); | ||
| 28 | + | ||
| 29 | + }); | ||
| 30 | + | ||
| 31 | + $(".gradient3").click(function() { | ||
| 32 | + | ||
| 33 | + $('<style />', { | ||
| 34 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#2E7D32; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#2E7D32;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #2E7D32;}#services i.fa, #testimonials {background:#2E7D32;}' | ||
| 35 | + }).appendTo('head'); | ||
| 36 | + | ||
| 37 | + }); | ||
| 38 | + | ||
| 39 | + $(".gradient4").click(function() { | ||
| 40 | + | ||
| 41 | + | ||
| 42 | + | ||
| 43 | + $('<style />', { | ||
| 44 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#1abc9c; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#1abc9c;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #1abc9c;}#services i.fa, #testimonials {background:#1abc9c;} ' | ||
| 45 | + }).appendTo('head'); | ||
| 46 | + | ||
| 47 | + | ||
| 48 | + }); | ||
| 49 | + | ||
| 50 | + | ||
| 51 | + $(".gradient5").click(function() { | ||
| 52 | + | ||
| 53 | + | ||
| 54 | + | ||
| 55 | + $('<style />', { | ||
| 56 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#607D8B; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#607D8B;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #607D8B;}#services i.fa, #testimonials {background:#607D8B;} ' | ||
| 57 | + }).appendTo('head'); | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + }); | ||
| 61 | + | ||
| 62 | + | ||
| 63 | + | ||
| 64 | + | ||
| 65 | + $(".gradient6").click(function() { | ||
| 66 | + | ||
| 67 | + | ||
| 68 | + | ||
| 69 | + $('<style />', { | ||
| 70 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#f39c12; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#f39c12;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #f39c12;}#services i.fa, #testimonials {background:#f39c12;} ' | ||
| 71 | + }).appendTo('head'); | ||
| 72 | + | ||
| 73 | + | ||
| 74 | + }); | ||
| 75 | + | ||
| 76 | + $(".gradient7").click(function() { | ||
| 77 | + | ||
| 78 | + | ||
| 79 | + | ||
| 80 | + $('<style />', { | ||
| 81 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#512DA8; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#512DA8;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #512DA8;}#services i.fa, #testimonials {background:#512DA8;} ' | ||
| 82 | + }).appendTo('head'); | ||
| 83 | + | ||
| 84 | + | ||
| 85 | + }); | ||
| 86 | + | ||
| 87 | + | ||
| 88 | + | ||
| 89 | + | ||
| 90 | + $(".gradient8").click(function() { | ||
| 91 | + | ||
| 92 | + | ||
| 93 | + | ||
| 94 | + $('<style />', { | ||
| 95 | + text: '.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {border-bottom-color:#737373; }section h2.section-heading, .text-muted-role, a, .navbar-default .nav li a:hover, .navbar-default .nav li a:focus {color:#737373;}.btn-xl, ul.social-buttons li a, ul.filter li a, .pricing .border, .pricing a.btn-send, .scroll-up a, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle, .scroll-up a:hover, .scroll-up a:active, .pricing-top-box {background-color: #737373;}#services i.fa, #testimonials {background:#737373;} ' | ||
| 96 | + }).appendTo('head'); | ||
| 97 | + | ||
| 98 | + | ||
| 99 | + }); | ||
| 100 | + | ||
| 101 | + | ||
| 102 | +}); |
views/js/smoothscroll.js
0 → 100644
| 1 | +// SmoothScroll for websites v1.2.1 | ||
| 2 | +// Licensed under the terms of the MIT license. | ||
| 3 | + | ||
| 4 | +// People involved | ||
| 5 | +// - Balazs Galambosi (maintainer) | ||
| 6 | +// - Michael Herf (Pulse Algorithm) | ||
| 7 | + | ||
| 8 | +(function(){ | ||
| 9 | + | ||
| 10 | +// Scroll Variables (tweakable) | ||
| 11 | +var defaultOptions = { | ||
| 12 | + | ||
| 13 | + // Scrolling Core | ||
| 14 | + frameRate : 150, // [Hz] | ||
| 15 | + animationTime : 600, // [px] | ||
| 16 | + stepSize : 120, // [px] | ||
| 17 | + | ||
| 18 | + // Pulse (less tweakable) | ||
| 19 | + // ratio of "tail" to "acceleration" | ||
| 20 | + pulseAlgorithm : true, | ||
| 21 | + pulseScale : 8, | ||
| 22 | + pulseNormalize : 1, | ||
| 23 | + | ||
| 24 | + // Acceleration | ||
| 25 | + accelerationDelta : 20, // 20 | ||
| 26 | + accelerationMax : 1, // 1 | ||
| 27 | + | ||
| 28 | + // Keyboard Settings | ||
| 29 | + keyboardSupport : true, // option | ||
| 30 | + arrowScroll : 50, // [px] | ||
| 31 | + | ||
| 32 | + // Other | ||
| 33 | + touchpadSupport : true, | ||
| 34 | + fixedBackground : true, | ||
| 35 | + excluded : "" | ||
| 36 | +}; | ||
| 37 | + | ||
| 38 | +var options = defaultOptions; | ||
| 39 | + | ||
| 40 | + | ||
| 41 | +// Other Variables | ||
| 42 | +var isExcluded = false; | ||
| 43 | +var isFrame = false; | ||
| 44 | +var direction = { x: 0, y: 0 }; | ||
| 45 | +var initDone = false; | ||
| 46 | +var root = document.documentElement; | ||
| 47 | +var activeElement; | ||
| 48 | +var observer; | ||
| 49 | +var deltaBuffer = [ 120, 120, 120 ]; | ||
| 50 | + | ||
| 51 | +var key = { left: 37, up: 38, right: 39, down: 40, spacebar: 32, | ||
| 52 | + pageup: 33, pagedown: 34, end: 35, home: 36 }; | ||
| 53 | + | ||
| 54 | + | ||
| 55 | +/*********************************************** | ||
| 56 | + * SETTINGS | ||
| 57 | + ***********************************************/ | ||
| 58 | + | ||
| 59 | +var options = defaultOptions; | ||
| 60 | + | ||
| 61 | + | ||
| 62 | +/*********************************************** | ||
| 63 | + * INITIALIZE | ||
| 64 | + ***********************************************/ | ||
| 65 | + | ||
| 66 | +/** | ||
| 67 | + * Tests if smooth scrolling is allowed. Shuts down everything if not. | ||
| 68 | + */ | ||
| 69 | +function initTest() { | ||
| 70 | + | ||
| 71 | + var disableKeyboard = false; | ||
| 72 | + | ||
| 73 | + // disable keyboard support if anything above requested it | ||
| 74 | + if (disableKeyboard) { | ||
| 75 | + removeEvent("keydown", keydown); | ||
| 76 | + } | ||
| 77 | + | ||
| 78 | + if (options.keyboardSupport && !disableKeyboard) { | ||
| 79 | + addEvent("keydown", keydown); | ||
| 80 | + } | ||
| 81 | +} | ||
| 82 | + | ||
| 83 | +/** | ||
| 84 | + * Sets up scrolls array, determines if frames are involved. | ||
| 85 | + */ | ||
| 86 | +function init() { | ||
| 87 | + | ||
| 88 | + if (!document.body) return; | ||
| 89 | + | ||
| 90 | + var body = document.body; | ||
| 91 | + var html = document.documentElement; | ||
| 92 | + var windowHeight = window.innerHeight; | ||
| 93 | + var scrollHeight = body.scrollHeight; | ||
| 94 | + | ||
| 95 | + // check compat mode for root element | ||
| 96 | + root = (document.compatMode.indexOf('CSS') >= 0) ? html : body; | ||
| 97 | + activeElement = body; | ||
| 98 | + | ||
| 99 | + initTest(); | ||
| 100 | + initDone = true; | ||
| 101 | + | ||
| 102 | + // Checks if this script is running in a frame | ||
| 103 | + if (top != self) { | ||
| 104 | + isFrame = true; | ||
| 105 | + } | ||
| 106 | + | ||
| 107 | + /** | ||
| 108 | + * This fixes a bug where the areas left and right to | ||
| 109 | + * the content does not trigger the onmousewheel event | ||
| 110 | + * on some pages. e.g.: html, body { height: 100% } | ||
| 111 | + */ | ||
| 112 | + else if (scrollHeight > windowHeight && | ||
| 113 | + (body.offsetHeight <= windowHeight || | ||
| 114 | + html.offsetHeight <= windowHeight)) { | ||
| 115 | + | ||
| 116 | + // DOMChange (throttle): fix height | ||
| 117 | + var pending = false; | ||
| 118 | + var refresh = function () { | ||
| 119 | + if (!pending && html.scrollHeight != document.height) { | ||
| 120 | + pending = true; // add a new pending action | ||
| 121 | + setTimeout(function () { | ||
| 122 | + html.style.height = document.height + 'px'; | ||
| 123 | + pending = false; | ||
| 124 | + }, 500); // act rarely to stay fast | ||
| 125 | + } | ||
| 126 | + }; | ||
| 127 | + html.style.height = 'auto'; | ||
| 128 | + setTimeout(refresh, 10); | ||
| 129 | + | ||
| 130 | + // clearfix | ||
| 131 | + if (root.offsetHeight <= windowHeight) { | ||
| 132 | + var underlay = document.createElement("div"); | ||
| 133 | + underlay.style.clear = "both"; | ||
| 134 | + body.appendChild(underlay); | ||
| 135 | + } | ||
| 136 | + } | ||
| 137 | + | ||
| 138 | + // disable fixed background | ||
| 139 | + if (!options.fixedBackground && !isExcluded) { | ||
| 140 | + body.style.backgroundAttachment = "scroll"; | ||
| 141 | + html.style.backgroundAttachment = "scroll"; | ||
| 142 | + } | ||
| 143 | +} | ||
| 144 | + | ||
| 145 | + | ||
| 146 | +/************************************************ | ||
| 147 | + * SCROLLING | ||
| 148 | + ************************************************/ | ||
| 149 | + | ||
| 150 | +var que = []; | ||
| 151 | +var pending = false; | ||
| 152 | +var lastScroll = +new Date; | ||
| 153 | + | ||
| 154 | +/** | ||
| 155 | + * Pushes scroll actions to the scrolling queue. | ||
| 156 | + */ | ||
| 157 | +function scrollArray(elem, left, top, delay) { | ||
| 158 | + | ||
| 159 | + delay || (delay = 1000); | ||
| 160 | + directionCheck(left, top); | ||
| 161 | + | ||
| 162 | + if (options.accelerationMax != 1) { | ||
| 163 | + var now = +new Date; | ||
| 164 | + var elapsed = now - lastScroll; | ||
| 165 | + if (elapsed < options.accelerationDelta) { | ||
| 166 | + var factor = (1 + (30 / elapsed)) / 2; | ||
| 167 | + if (factor > 1) { | ||
| 168 | + factor = Math.min(factor, options.accelerationMax); | ||
| 169 | + left *= factor; | ||
| 170 | + top *= factor; | ||
| 171 | + } | ||
| 172 | + } | ||
| 173 | + lastScroll = +new Date; | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + // push a scroll command | ||
| 177 | + que.push({ | ||
| 178 | + x: left, | ||
| 179 | + y: top, | ||
| 180 | + lastX: (left < 0) ? 0.99 : -0.99, | ||
| 181 | + lastY: (top < 0) ? 0.99 : -0.99, | ||
| 182 | + start: +new Date | ||
| 183 | + }); | ||
| 184 | + | ||
| 185 | + // don't act if there's a pending queue | ||
| 186 | + if (pending) { | ||
| 187 | + return; | ||
| 188 | + } | ||
| 189 | + | ||
| 190 | + var scrollWindow = (elem === document.body); | ||
| 191 | + | ||
| 192 | + var step = function (time) { | ||
| 193 | + | ||
| 194 | + var now = +new Date; | ||
| 195 | + var scrollX = 0; | ||
| 196 | + var scrollY = 0; | ||
| 197 | + | ||
| 198 | + for (var i = 0; i < que.length; i++) { | ||
| 199 | + | ||
| 200 | + var item = que[i]; | ||
| 201 | + var elapsed = now - item.start; | ||
| 202 | + var finished = (elapsed >= options.animationTime); | ||
| 203 | + | ||
| 204 | + // scroll position: [0, 1] | ||
| 205 | + var position = (finished) ? 1 : elapsed / options.animationTime; | ||
| 206 | + | ||
| 207 | + // easing [optional] | ||
| 208 | + if (options.pulseAlgorithm) { | ||
| 209 | + position = pulse(position); | ||
| 210 | + } | ||
| 211 | + | ||
| 212 | + // only need the difference | ||
| 213 | + var x = (item.x * position - item.lastX) >> 0; | ||
| 214 | + var y = (item.y * position - item.lastY) >> 0; | ||
| 215 | + | ||
| 216 | + // add this to the total scrolling | ||
| 217 | + scrollX += x; | ||
| 218 | + scrollY += y; | ||
| 219 | + | ||
| 220 | + // update last values | ||
| 221 | + item.lastX += x; | ||
| 222 | + item.lastY += y; | ||
| 223 | + | ||
| 224 | + // delete and step back if it's over | ||
| 225 | + if (finished) { | ||
| 226 | + que.splice(i, 1); i--; | ||
| 227 | + } | ||
| 228 | + } | ||
| 229 | + | ||
| 230 | + // scroll left and top | ||
| 231 | + if (scrollWindow) { | ||
| 232 | + window.scrollBy(scrollX, scrollY); | ||
| 233 | + } | ||
| 234 | + else { | ||
| 235 | + if (scrollX) elem.scrollLeft += scrollX; | ||
| 236 | + if (scrollY) elem.scrollTop += scrollY; | ||
| 237 | + } | ||
| 238 | + | ||
| 239 | + // clean up if there's nothing left to do | ||
| 240 | + if (!left && !top) { | ||
| 241 | + que = []; | ||
| 242 | + } | ||
| 243 | + | ||
| 244 | + if (que.length) { | ||
| 245 | + requestFrame(step, elem, (delay / options.frameRate + 1)); | ||
| 246 | + } else { | ||
| 247 | + pending = false; | ||
| 248 | + } | ||
| 249 | + }; | ||
| 250 | + | ||
| 251 | + // start a new queue of actions | ||
| 252 | + requestFrame(step, elem, 0); | ||
| 253 | + pending = true; | ||
| 254 | +} | ||
| 255 | + | ||
| 256 | + | ||
| 257 | +/*********************************************** | ||
| 258 | + * EVENTS | ||
| 259 | + ***********************************************/ | ||
| 260 | + | ||
| 261 | +/** | ||
| 262 | + * Mouse wheel handler. | ||
| 263 | + * @param {Object} event | ||
| 264 | + */ | ||
| 265 | +function wheel(event) { | ||
| 266 | + | ||
| 267 | + if (!initDone) { | ||
| 268 | + init(); | ||
| 269 | + } | ||
| 270 | + | ||
| 271 | + var target = event.target; | ||
| 272 | + var overflowing = overflowingAncestor(target); | ||
| 273 | + | ||
| 274 | + // use default if there's no overflowing | ||
| 275 | + // element or default action is prevented | ||
| 276 | + if (!overflowing || event.defaultPrevented || | ||
| 277 | + isNodeName(activeElement, "embed") || | ||
| 278 | + (isNodeName(target, "embed") && /\.pdf/i.test(target.src))) { | ||
| 279 | + return true; | ||
| 280 | + } | ||
| 281 | + | ||
| 282 | + var deltaX = event.wheelDeltaX || 0; | ||
| 283 | + var deltaY = event.wheelDeltaY || 0; | ||
| 284 | + | ||
| 285 | + // use wheelDelta if deltaX/Y is not available | ||
| 286 | + if (!deltaX && !deltaY) { | ||
| 287 | + deltaY = event.wheelDelta || 0; | ||
| 288 | + } | ||
| 289 | + | ||
| 290 | + // check if it's a touchpad scroll that should be ignored | ||
| 291 | + if (!options.touchpadSupport && isTouchpad(deltaY)) { | ||
| 292 | + return true; | ||
| 293 | + } | ||
| 294 | + | ||
| 295 | + // scale by step size | ||
| 296 | + // delta is 120 most of the time | ||
| 297 | + // synaptics seems to send 1 sometimes | ||
| 298 | + if (Math.abs(deltaX) > 1.2) { | ||
| 299 | + deltaX *= options.stepSize / 120; | ||
| 300 | + } | ||
| 301 | + if (Math.abs(deltaY) > 1.2) { | ||
| 302 | + deltaY *= options.stepSize / 120; | ||
| 303 | + } | ||
| 304 | + | ||
| 305 | + scrollArray(overflowing, -deltaX, -deltaY); | ||
| 306 | + event.preventDefault(); | ||
| 307 | +} | ||
| 308 | + | ||
| 309 | +/** | ||
| 310 | + * Keydown event handler. | ||
| 311 | + * @param {Object} event | ||
| 312 | + */ | ||
| 313 | +function keydown(event) { | ||
| 314 | + | ||
| 315 | + var target = event.target; | ||
| 316 | + var modifier = event.ctrlKey || event.altKey || event.metaKey || | ||
| 317 | + (event.shiftKey && event.keyCode !== key.spacebar); | ||
| 318 | + | ||
| 319 | + // do nothing if user is editing text | ||
| 320 | + // or using a modifier key (except shift) | ||
| 321 | + // or in a dropdown | ||
| 322 | + if ( /input|textarea|select|embed/i.test(target.nodeName) || | ||
| 323 | + target.isContentEditable || | ||
| 324 | + event.defaultPrevented || | ||
| 325 | + modifier ) { | ||
| 326 | + return true; | ||
| 327 | + } | ||
| 328 | + // spacebar should trigger button press | ||
| 329 | + if (isNodeName(target, "button") && | ||
| 330 | + event.keyCode === key.spacebar) { | ||
| 331 | + return true; | ||
| 332 | + } | ||
| 333 | + | ||
| 334 | + var shift, x = 0, y = 0; | ||
| 335 | + var elem = overflowingAncestor(activeElement); | ||
| 336 | + var clientHeight = elem.clientHeight; | ||
| 337 | + | ||
| 338 | + if (elem == document.body) { | ||
| 339 | + clientHeight = window.innerHeight; | ||
| 340 | + } | ||
| 341 | + | ||
| 342 | + switch (event.keyCode) { | ||
| 343 | + case key.up: | ||
| 344 | + y = -options.arrowScroll; | ||
| 345 | + break; | ||
| 346 | + case key.down: | ||
| 347 | + y = options.arrowScroll; | ||
| 348 | + break; | ||
| 349 | + case key.spacebar: // (+ shift) | ||
| 350 | + shift = event.shiftKey ? 1 : -1; | ||
| 351 | + y = -shift * clientHeight * 0.9; | ||
| 352 | + break; | ||
| 353 | + case key.pageup: | ||
| 354 | + y = -clientHeight * 0.9; | ||
| 355 | + break; | ||
| 356 | + case key.pagedown: | ||
| 357 | + y = clientHeight * 0.9; | ||
| 358 | + break; | ||
| 359 | + case key.home: | ||
| 360 | + y = -elem.scrollTop; | ||
| 361 | + break; | ||
| 362 | + case key.end: | ||
| 363 | + var damt = elem.scrollHeight - elem.scrollTop - clientHeight; | ||
| 364 | + y = (damt > 0) ? damt+10 : 0; | ||
| 365 | + break; | ||
| 366 | + case key.left: | ||
| 367 | + x = -options.arrowScroll; | ||
| 368 | + break; | ||
| 369 | + case key.right: | ||
| 370 | + x = options.arrowScroll; | ||
| 371 | + break; | ||
| 372 | + default: | ||
| 373 | + return true; // a key we don't care about | ||
| 374 | + } | ||
| 375 | + | ||
| 376 | + scrollArray(elem, x, y); | ||
| 377 | + event.preventDefault(); | ||
| 378 | +} | ||
| 379 | + | ||
| 380 | +/** | ||
| 381 | + * Mousedown event only for updating activeElement | ||
| 382 | + */ | ||
| 383 | +function mousedown(event) { | ||
| 384 | + activeElement = event.target; | ||
| 385 | +} | ||
| 386 | + | ||
| 387 | + | ||
| 388 | +/*********************************************** | ||
| 389 | + * OVERFLOW | ||
| 390 | + ***********************************************/ | ||
| 391 | + | ||
| 392 | +var cache = {}; // cleared out every once in while | ||
| 393 | +setInterval(function () { cache = {}; }, 10 * 1000); | ||
| 394 | + | ||
| 395 | +var uniqueID = (function () { | ||
| 396 | + var i = 0; | ||
| 397 | + return function (el) { | ||
| 398 | + return el.uniqueID || (el.uniqueID = i++); | ||
| 399 | + }; | ||
| 400 | +})(); | ||
| 401 | + | ||
| 402 | +function setCache(elems, overflowing) { | ||
| 403 | + for (var i = elems.length; i--;) | ||
| 404 | + cache[uniqueID(elems[i])] = overflowing; | ||
| 405 | + return overflowing; | ||
| 406 | +} | ||
| 407 | + | ||
| 408 | +function overflowingAncestor(el) { | ||
| 409 | + var elems = []; | ||
| 410 | + var rootScrollHeight = root.scrollHeight; | ||
| 411 | + do { | ||
| 412 | + var cached = cache[uniqueID(el)]; | ||
| 413 | + if (cached) { | ||
| 414 | + return setCache(elems, cached); | ||
| 415 | + } | ||
| 416 | + elems.push(el); | ||
| 417 | + if (rootScrollHeight === el.scrollHeight) { | ||
| 418 | + if (!isFrame || root.clientHeight + 10 < rootScrollHeight) { | ||
| 419 | + return setCache(elems, document.body); // scrolling root in WebKit | ||
| 420 | + } | ||
| 421 | + } else if (el.clientHeight + 10 < el.scrollHeight) { | ||
| 422 | + overflow = getComputedStyle(el, "").getPropertyValue("overflow-y"); | ||
| 423 | + if (overflow === "scroll" || overflow === "auto") { | ||
| 424 | + return setCache(elems, el); | ||
| 425 | + } | ||
| 426 | + } | ||
| 427 | + } while (el = el.parentNode); | ||
| 428 | +} | ||
| 429 | + | ||
| 430 | + | ||
| 431 | +/*********************************************** | ||
| 432 | + * HELPERS | ||
| 433 | + ***********************************************/ | ||
| 434 | + | ||
| 435 | +function addEvent(type, fn, bubble) { | ||
| 436 | + window.addEventListener(type, fn, (bubble||false)); | ||
| 437 | +} | ||
| 438 | + | ||
| 439 | +function removeEvent(type, fn, bubble) { | ||
| 440 | + window.removeEventListener(type, fn, (bubble||false)); | ||
| 441 | +} | ||
| 442 | + | ||
| 443 | +function isNodeName(el, tag) { | ||
| 444 | + return (el.nodeName||"").toLowerCase() === tag.toLowerCase(); | ||
| 445 | +} | ||
| 446 | + | ||
| 447 | +function directionCheck(x, y) { | ||
| 448 | + x = (x > 0) ? 1 : -1; | ||
| 449 | + y = (y > 0) ? 1 : -1; | ||
| 450 | + if (direction.x !== x || direction.y !== y) { | ||
| 451 | + direction.x = x; | ||
| 452 | + direction.y = y; | ||
| 453 | + que = []; | ||
| 454 | + lastScroll = 0; | ||
| 455 | + } | ||
| 456 | +} | ||
| 457 | + | ||
| 458 | +var deltaBufferTimer; | ||
| 459 | + | ||
| 460 | +function isTouchpad(deltaY) { | ||
| 461 | + if (!deltaY) return; | ||
| 462 | + deltaY = Math.abs(deltaY) | ||
| 463 | + deltaBuffer.push(deltaY); | ||
| 464 | + deltaBuffer.shift(); | ||
| 465 | + clearTimeout(deltaBufferTimer); | ||
| 466 | + var allDivisable = (isDivisible(deltaBuffer[0], 120) && | ||
| 467 | + isDivisible(deltaBuffer[1], 120) && | ||
| 468 | + isDivisible(deltaBuffer[2], 120)); | ||
| 469 | + return !allDivisable; | ||
| 470 | +} | ||
| 471 | + | ||
| 472 | +function isDivisible(n, divisor) { | ||
| 473 | + return (Math.floor(n / divisor) == n / divisor); | ||
| 474 | +} | ||
| 475 | + | ||
| 476 | +var requestFrame = (function () { | ||
| 477 | + return window.requestAnimationFrame || | ||
| 478 | + window.webkitRequestAnimationFrame || | ||
| 479 | + function (callback, element, delay) { | ||
| 480 | + window.setTimeout(callback, delay || (1000/60)); | ||
| 481 | + }; | ||
| 482 | +})(); | ||
| 483 | + | ||
| 484 | + | ||
| 485 | +/*********************************************** | ||
| 486 | + * PULSE | ||
| 487 | + ***********************************************/ | ||
| 488 | + | ||
| 489 | +/** | ||
| 490 | + * Viscous fluid with a pulse for part and decay for the rest. | ||
| 491 | + * - Applies a fixed force over an interval (a damped acceleration), and | ||
| 492 | + * - Lets the exponential bleed away the velocity over a longer interval | ||
| 493 | + * - Michael Herf, http://stereopsis.com/stopping/ | ||
| 494 | + */ | ||
| 495 | +function pulse_(x) { | ||
| 496 | + var val, start, expx; | ||
| 497 | + // test | ||
| 498 | + x = x * options.pulseScale; | ||
| 499 | + if (x < 1) { // acceleartion | ||
| 500 | + val = x - (1 - Math.exp(-x)); | ||
| 501 | + } else { // tail | ||
| 502 | + // the previous animation ended here: | ||
| 503 | + start = Math.exp(-1); | ||
| 504 | + // simple viscous drag | ||
| 505 | + x -= 1; | ||
| 506 | + expx = 1 - Math.exp(-x); | ||
| 507 | + val = start + (expx * (1 - start)); | ||
| 508 | + } | ||
| 509 | + return val * options.pulseNormalize; | ||
| 510 | +} | ||
| 511 | + | ||
| 512 | +function pulse(x) { | ||
| 513 | + if (x >= 1) return 1; | ||
| 514 | + if (x <= 0) return 0; | ||
| 515 | + | ||
| 516 | + if (options.pulseNormalize == 1) { | ||
| 517 | + options.pulseNormalize /= pulse_(1); | ||
| 518 | + } | ||
| 519 | + return pulse_(x); | ||
| 520 | +} | ||
| 521 | + | ||
| 522 | +var isChrome = /chrome/i.test(window.navigator.userAgent); | ||
| 523 | +var wheelEvent = null; | ||
| 524 | +if ("onwheel" in document.createElement("div")) | ||
| 525 | + wheelEvent = "wheel"; | ||
| 526 | +else if ("onmousewheel" in document.createElement("div")) | ||
| 527 | + wheelEvent = "mousewheel"; | ||
| 528 | + | ||
| 529 | +if (wheelEvent && isChrome) { | ||
| 530 | + addEvent(wheelEvent, wheel); | ||
| 531 | + addEvent("mousedown", mousedown); | ||
| 532 | + addEvent("load", init); | ||
| 533 | +} | ||
| 534 | + | ||
| 535 | +})(); | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/js/xBe.js
0 → 100644
| 1 | +/* | ||
| 2 | + xBe by TEMPLATE STOCK | ||
| 3 | + templatestock.co @templatestock | ||
| 4 | + Released for free under the Creative Commons Attribution 3.0 license (templated.co/license) | ||
| 5 | +*/ | ||
| 6 | + | ||
| 7 | +// jQuery for page scrolling feature - requires jQuery Easing plugin | ||
| 8 | +$(function() { | ||
| 9 | + 'use strict'; | ||
| 10 | + | ||
| 11 | + // Back to top smooth scroll | ||
| 12 | + | ||
| 13 | + $('a.page-scroll').bind('click', function(event) { | ||
| 14 | + var $anchor = $(this); | ||
| 15 | + $('html, body').stop().animate({ | ||
| 16 | + scrollTop: $($anchor.attr('href')).offset().top | ||
| 17 | + }, 1000, 'easeInOutExpo'); | ||
| 18 | + event.preventDefault(); | ||
| 19 | + }); | ||
| 20 | + | ||
| 21 | + | ||
| 22 | + // Scroll to top animated button | ||
| 23 | + | ||
| 24 | + $(window).scroll(function() { | ||
| 25 | + if ($(this).scrollTop() > 100) { | ||
| 26 | + $('.scroll-up').fadeIn(); | ||
| 27 | + } else { | ||
| 28 | + $('.scroll-up').fadeOut(); | ||
| 29 | + } | ||
| 30 | + }); | ||
| 31 | + | ||
| 32 | + | ||
| 33 | + // Highlight the top nav as scrolling occurs | ||
| 34 | + $('body').scrollspy({ | ||
| 35 | + target: '.navbar-fixed-top' | ||
| 36 | + }) | ||
| 37 | + | ||
| 38 | + // Closes the Responsive Menu on Menu Item Click | ||
| 39 | + $('.navbar-collapse ul li a').click(function() { | ||
| 40 | + $('.navbar-toggle:visible').click(); | ||
| 41 | + }); | ||
| 42 | + | ||
| 43 | + | ||
| 44 | + // Script for Portfolio Section | ||
| 45 | + | ||
| 46 | + $(document).ready(function() { | ||
| 47 | + | ||
| 48 | + // Slider top | ||
| 49 | + | ||
| 50 | + | ||
| 51 | + $('#myCarousel-one').carousel({ | ||
| 52 | + interval: 9000, //changes the speed | ||
| 53 | + keyboard: false, | ||
| 54 | + }) | ||
| 55 | + | ||
| 56 | + | ||
| 57 | + //Team carousel | ||
| 58 | + | ||
| 59 | + $('#myCarousel-two').carousel({ | ||
| 60 | + interval: 4000, //changes the speed | ||
| 61 | + keyboard: false, | ||
| 62 | + }) | ||
| 63 | + | ||
| 64 | + //Clients carousel | ||
| 65 | + | ||
| 66 | + $('#myCarousel-three').carousel({ | ||
| 67 | + interval: 4000, //changes the speed | ||
| 68 | + keyboard: false, | ||
| 69 | + }) | ||
| 70 | + | ||
| 71 | + //Testimonials carousel | ||
| 72 | + | ||
| 73 | + $('#myCarousel-four').carousel({ | ||
| 74 | + interval: 8000, //changes the speed | ||
| 75 | + keyboard: false, | ||
| 76 | + }) | ||
| 77 | + | ||
| 78 | + // Google Maps | ||
| 79 | + | ||
| 80 | + google.maps.visualRefresh = true; | ||
| 81 | + | ||
| 82 | + var map; | ||
| 83 | + | ||
| 84 | + function initialize() { | ||
| 85 | + var geocoder = new google.maps.Geocoder(); | ||
| 86 | + var address = $('#map-input').text(); /* change the map-input to your address */ | ||
| 87 | + var mapOptions = { | ||
| 88 | + zoom: 15, | ||
| 89 | + mapTypeId: google.maps.MapTypeId.ROADMAP, | ||
| 90 | + scrollwheel: false | ||
| 91 | + }; | ||
| 92 | + map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); | ||
| 93 | + | ||
| 94 | + if (geocoder) { | ||
| 95 | + geocoder.geocode({ | ||
| 96 | + 'address': address | ||
| 97 | + }, function(results, status) { | ||
| 98 | + if (status == google.maps.GeocoderStatus.OK) { | ||
| 99 | + if (status != google.maps.GeocoderStatus.ZERO_RESULTS) { | ||
| 100 | + map.setCenter(results[0].geometry.location); | ||
| 101 | + | ||
| 102 | + var infowindow = new google.maps.InfoWindow({ | ||
| 103 | + content: address, | ||
| 104 | + map: map, | ||
| 105 | + position: results[0].geometry.location, | ||
| 106 | + }); | ||
| 107 | + | ||
| 108 | + var marker = new google.maps.Marker({ | ||
| 109 | + position: results[0].geometry.location, | ||
| 110 | + map: map, | ||
| 111 | + title: address | ||
| 112 | + }); | ||
| 113 | + | ||
| 114 | + } else { | ||
| 115 | + alert("No results found"); | ||
| 116 | + } | ||
| 117 | + } | ||
| 118 | + }); | ||
| 119 | + } | ||
| 120 | + } | ||
| 121 | + google.maps.event.addDomListener(window, 'load', initialize); | ||
| 122 | + | ||
| 123 | + /* end google maps */ | ||
| 124 | + | ||
| 125 | + | ||
| 126 | + }); | ||
| 127 | + | ||
| 128 | + /* Animated Titles of Sections*/ | ||
| 129 | + | ||
| 130 | + function isScrolledIntoView(elem) { | ||
| 131 | + var docViewTop = $(window).scrollTop(); | ||
| 132 | + var docViewBottom = docViewTop + $(window).height(); | ||
| 133 | + | ||
| 134 | + var elemTop = $(elem).offset().top; | ||
| 135 | + var elemBottom = elemTop + $(elem).height(); | ||
| 136 | + | ||
| 137 | + return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop)); | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + $(window).scroll(function() { | ||
| 141 | + $('.section-heading, .section-subheading').each(function() { | ||
| 142 | + if (isScrolledIntoView(this) === true) { | ||
| 143 | + $(this).addClass('animated fadeInUp') | ||
| 144 | + } | ||
| 145 | + }); | ||
| 146 | + | ||
| 147 | + | ||
| 148 | + }); | ||
| 149 | + | ||
| 150 | + | ||
| 151 | + /* Isotope Filter */ | ||
| 152 | + | ||
| 153 | + (function() { | ||
| 154 | + var winDow = $(window); | ||
| 155 | + var $container = $('.portfolio-items'); | ||
| 156 | + var $filter = $('.filter'); | ||
| 157 | + | ||
| 158 | + try { | ||
| 159 | + $container.imagesLoaded(function() { | ||
| 160 | + $container.show(); | ||
| 161 | + $container.isotope({ | ||
| 162 | + filter: '*', | ||
| 163 | + layoutMode: 'masonry', | ||
| 164 | + animationOptions: { | ||
| 165 | + duration: 750, | ||
| 166 | + easing: 'linear' | ||
| 167 | + } | ||
| 168 | + }); | ||
| 169 | + }); | ||
| 170 | + } catch (err) {} | ||
| 171 | + | ||
| 172 | + winDow.bind('resize', function() { | ||
| 173 | + var selector = $filter.find('a.active').attr('data-filter'); | ||
| 174 | + | ||
| 175 | + try { | ||
| 176 | + $container.isotope({ | ||
| 177 | + filter: selector, | ||
| 178 | + animationOptions: { | ||
| 179 | + duration: 750, | ||
| 180 | + easing: 'linear', | ||
| 181 | + queue: false, | ||
| 182 | + } | ||
| 183 | + }); | ||
| 184 | + } catch (err) {} | ||
| 185 | + return false; | ||
| 186 | + }); | ||
| 187 | + | ||
| 188 | + $filter.find('a').click(function() { | ||
| 189 | + var selector = $(this).attr('data-filter'); | ||
| 190 | + | ||
| 191 | + try { | ||
| 192 | + $container.isotope({ | ||
| 193 | + filter: selector, | ||
| 194 | + animationOptions: { | ||
| 195 | + duration: 750, | ||
| 196 | + easing: 'linear', | ||
| 197 | + queue: false, | ||
| 198 | + } | ||
| 199 | + }); | ||
| 200 | + } catch (err) { | ||
| 201 | + | ||
| 202 | + } | ||
| 203 | + return false; | ||
| 204 | + }); | ||
| 205 | + | ||
| 206 | + | ||
| 207 | + }()); | ||
| 208 | + | ||
| 209 | + | ||
| 210 | + /* Header shrink function*/ | ||
| 211 | + | ||
| 212 | + $(function() { | ||
| 213 | + var shrinkHeader = 350; | ||
| 214 | + $(window).scroll(function() { | ||
| 215 | + var scroll = getCurrentScroll(); | ||
| 216 | + if (scroll >= shrinkHeader) { | ||
| 217 | + $('.navbar').addClass('navbar-shrink'); | ||
| 218 | + } else { | ||
| 219 | + $('.navbar').removeClass('navbar-shrink'); | ||
| 220 | + } | ||
| 221 | + }); | ||
| 222 | + | ||
| 223 | + function getCurrentScroll() { | ||
| 224 | + return window.pageYOffset || document.documentElement.scrollTop; | ||
| 225 | + } | ||
| 226 | + }); | ||
| 227 | + | ||
| 228 | + /* Footer reveal function*/ | ||
| 229 | + | ||
| 230 | + $('footer').footerReveal({ | ||
| 231 | + zIndex: -100, | ||
| 232 | + shadow: true, | ||
| 233 | + shadowOpacity: 0.6 | ||
| 234 | + | ||
| 235 | + }); | ||
| 236 | + | ||
| 237 | + | ||
| 238 | + | ||
| 239 | +}); |
views/signup.ejs
0 → 100644
| 1 | +<form action="/signup" method="POST" class="signupform"> | ||
| 2 | + <label for="email">E-MAIL</label> | ||
| 3 | + <input name="email" type="email" required /> | ||
| 4 | + <label for="password">PASSWORD</label> | ||
| 5 | + <input name="password" type="password" required /> | ||
| 6 | + <label for="name">NAME</label> | ||
| 7 | + <input name="name" type="text" required /> | ||
| 8 | + <label for="adminCode">ADMIN CODE</label> | ||
| 9 | + <input name="adminCode" type="text"/> | ||
| 10 | + <button class="btn">SIGNUP!</button> | ||
| 11 | +</form> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment