animate.min.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568
  1. @charset "UTF-8";
  2. /*!
  3. * animate.css -http://daneden.me/animate
  4. * Version - 3.5.2
  5. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  6. *
  7. * Copyright (c) 2017 Daniel Eden
  8. */
  9. .animated {
  10. animation-duration: 1s;
  11. animation-fill-mode: both
  12. }
  13. .animated.infinite {
  14. animation-iteration-count: infinite
  15. }
  16. .animated.hinge {
  17. animation-duration: 2s
  18. }
  19. .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  20. animation-duration: .75s
  21. }
  22. @keyframes bounce {
  23. 0%,20%,53%,80%,to {
  24. animation-timing-function: cubic-bezier(.215,.61,.355,1);
  25. transform: translateZ(0)
  26. }
  27. 40%,43% {
  28. animation-timing-function: cubic-bezier(.755,.05,.855,.06);
  29. transform: translate3d(0,-30px,0)
  30. }
  31. 70% {
  32. animation-timing-function: cubic-bezier(.755,.05,.855,.06);
  33. transform: translate3d(0,-15px,0)
  34. }
  35. 90% {
  36. transform: translate3d(0,-4px,0)
  37. }
  38. }
  39. .bounce {
  40. animation-name: bounce;
  41. transform-origin: center bottom
  42. }
  43. @keyframes flash {
  44. 0%,50%,to {
  45. opacity: 1
  46. }
  47. 25%,75% {
  48. opacity: 0
  49. }
  50. }
  51. .flash {
  52. animation-name: flash
  53. }
  54. @keyframes pulse {
  55. 0% {
  56. transform: scaleX(1)
  57. }
  58. 50% {
  59. transform: scale3d(1.05,1.05,1.05)
  60. }
  61. to {
  62. transform: scaleX(1)
  63. }
  64. }
  65. .pulse {
  66. animation-name: pulse
  67. }
  68. @keyframes rubberBand {
  69. 0% {
  70. transform: scaleX(1)
  71. }
  72. 30% {
  73. transform: scale3d(1.25,.75,1)
  74. }
  75. 40% {
  76. transform: scale3d(.75,1.25,1)
  77. }
  78. 50% {
  79. transform: scale3d(1.15,.85,1)
  80. }
  81. 65% {
  82. transform: scale3d(.95,1.05,1)
  83. }
  84. 75% {
  85. transform: scale3d(1.05,.95,1)
  86. }
  87. to {
  88. transform: scaleX(1)
  89. }
  90. }
  91. .rubberBand {
  92. animation-name: rubberBand
  93. }
  94. @keyframes shake {
  95. 0%,to {
  96. transform: translateZ(0)
  97. }
  98. 10%,30%,50%,70%,90% {
  99. transform: translate3d(-10px,0,0)
  100. }
  101. 20%,40%,60%,80% {
  102. transform: translate3d(10px,0,0)
  103. }
  104. }
  105. .shake {
  106. animation-name: shake
  107. }
  108. @keyframes headShake {
  109. 0% {
  110. transform: translateX(0)
  111. }
  112. 6.5% {
  113. transform: translateX(-6px) rotateY(-9deg)
  114. }
  115. 18.5% {
  116. transform: translateX(5px) rotateY(7deg)
  117. }
  118. 31.5% {
  119. transform: translateX(-3px) rotateY(-5deg)
  120. }
  121. 43.5% {
  122. transform: translateX(2px) rotateY(3deg)
  123. }
  124. 50% {
  125. transform: translateX(0)
  126. }
  127. }
  128. .headShake {
  129. animation-timing-function: ease-in-out;
  130. animation-name: headShake
  131. }
  132. @keyframes swing {
  133. 20% {
  134. transform: rotate(15deg)
  135. }
  136. 40% {
  137. transform: rotate(-10deg)
  138. }
  139. 60% {
  140. transform: rotate(5deg)
  141. }
  142. 80% {
  143. transform: rotate(-5deg)
  144. }
  145. to {
  146. transform: rotate(0deg)
  147. }
  148. }
  149. .swing {
  150. transform-origin: top center;
  151. animation-name: swing
  152. }
  153. @keyframes tada {
  154. 0% {
  155. transform: scaleX(1)
  156. }
  157. 10%,20% {
  158. transform: scale3d(.9,.9,.9) rotate(-3deg)
  159. }
  160. 30%,50%,70%,90% {
  161. transform: scale3d(1.1,1.1,1.1) rotate(3deg)
  162. }
  163. 40%,60%,80% {
  164. transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
  165. }
  166. to {
  167. transform: scaleX(1)
  168. }
  169. }
  170. .tada {
  171. animation-name: tada
  172. }
  173. @keyframes wobble {
  174. 0% {
  175. transform: none
  176. }
  177. 15% {
  178. transform: translate3d(-25%,0,0) rotate(-5deg)
  179. }
  180. 30% {
  181. transform: translate3d(20%,0,0) rotate(3deg)
  182. }
  183. 45% {
  184. transform: translate3d(-15%,0,0) rotate(-3deg)
  185. }
  186. 60% {
  187. transform: translate3d(10%,0,0) rotate(2deg)
  188. }
  189. 75% {
  190. transform: translate3d(-5%,0,0) rotate(-1deg)
  191. }
  192. to {
  193. transform: none
  194. }
  195. }
  196. .wobble {
  197. animation-name: wobble
  198. }
  199. @keyframes jello {
  200. 0%,11.1%,to {
  201. transform: none
  202. }
  203. 22.2% {
  204. transform: skewX(-12.5deg) skewY(-12.5deg)
  205. }
  206. 33.3% {
  207. transform: skewX(6.25deg) skewY(6.25deg)
  208. }
  209. 44.4% {
  210. transform: skewX(-3.125deg) skewY(-3.125deg)
  211. }
  212. 55.5% {
  213. transform: skewX(1.5625deg) skewY(1.5625deg)
  214. }
  215. 66.6% {
  216. transform: skewX(-.78125deg) skewY(-.78125deg)
  217. }
  218. 77.7% {
  219. transform: skewX(.390625deg) skewY(.390625deg)
  220. }
  221. 88.8% {
  222. transform: skewX(-.1953125deg) skewY(-.1953125deg)
  223. }
  224. }
  225. .jello {
  226. animation-name: jello;
  227. transform-origin: center
  228. }
  229. @keyframes bounceIn {
  230. 0%,20%,40%,60%,80%,to {
  231. animation-timing-function: cubic-bezier(.215,.61,.355,1)
  232. }
  233. 0% {
  234. opacity: 0;
  235. transform: scale3d(.3,.3,.3)
  236. }
  237. 20% {
  238. transform: scale3d(1.1,1.1,1.1)
  239. }
  240. 40% {
  241. transform: scale3d(.9,.9,.9)
  242. }
  243. 60% {
  244. opacity: 1;
  245. transform: scale3d(1.03,1.03,1.03)
  246. }
  247. 80% {
  248. transform: scale3d(.97,.97,.97)
  249. }
  250. to {
  251. opacity: 1;
  252. transform: scaleX(1)
  253. }
  254. }
  255. .bounceIn {
  256. animation-name: bounceIn
  257. }
  258. @keyframes bounceInDown {
  259. 0%,60%,75%,90%,to {
  260. animation-timing-function: cubic-bezier(.215,.61,.355,1)
  261. }
  262. 0% {
  263. opacity: 0;
  264. transform: translate3d(0,-3000px,0)
  265. }
  266. 60% {
  267. opacity: 1;
  268. transform: translate3d(0,25px,0)
  269. }
  270. 75% {
  271. transform: translate3d(0,-10px,0)
  272. }
  273. 90% {
  274. transform: translate3d(0,5px,0)
  275. }
  276. to {
  277. transform: none
  278. }
  279. }
  280. .bounceInDown {
  281. animation-name: bounceInDown
  282. }
  283. @keyframes bounceInLeft {
  284. 0%,60%,75%,90%,to {
  285. animation-timing-function: cubic-bezier(.215,.61,.355,1)
  286. }
  287. 0% {
  288. opacity: 0;
  289. transform: translate3d(-3000px,0,0)
  290. }
  291. 60% {
  292. opacity: 1;
  293. transform: translate3d(25px,0,0)
  294. }
  295. 75% {
  296. transform: translate3d(-10px,0,0)
  297. }
  298. 90% {
  299. transform: translate3d(5px,0,0)
  300. }
  301. to {
  302. transform: none
  303. }
  304. }
  305. .bounceInLeft {
  306. animation-name: bounceInLeft
  307. }
  308. @keyframes bounceInRight {
  309. 0%,60%,75%,90%,to {
  310. animation-timing-function: cubic-bezier(.215,.61,.355,1)
  311. }
  312. 0% {
  313. opacity: 0;
  314. transform: translate3d(3000px,0,0)
  315. }
  316. 60% {
  317. opacity: 1;
  318. transform: translate3d(-25px,0,0)
  319. }
  320. 75% {
  321. transform: translate3d(10px,0,0)
  322. }
  323. 90% {
  324. transform: translate3d(-5px,0,0)
  325. }
  326. to {
  327. transform: none
  328. }
  329. }
  330. .bounceInRight {
  331. animation-name: bounceInRight
  332. }
  333. @keyframes bounceInUp {
  334. 0%,60%,75%,90%,to {
  335. animation-timing-function: cubic-bezier(.215,.61,.355,1)
  336. }
  337. 0% {
  338. opacity: 0;
  339. transform: translate3d(0,3000px,0)
  340. }
  341. 60% {
  342. opacity: 1;
  343. transform: translate3d(0,-20px,0)
  344. }
  345. 75% {
  346. transform: translate3d(0,10px,0)
  347. }
  348. 90% {
  349. transform: translate3d(0,-5px,0)
  350. }
  351. to {
  352. transform: translateZ(0)
  353. }
  354. }
  355. .bounceInUp {
  356. animation-name: bounceInUp
  357. }
  358. @keyframes bounceOut {
  359. 20% {
  360. transform: scale3d(.9,.9,.9)
  361. }
  362. 50%,55% {
  363. opacity: 1;
  364. transform: scale3d(1.1,1.1,1.1)
  365. }
  366. to {
  367. opacity: 0;
  368. transform: scale3d(.3,.3,.3)
  369. }
  370. }
  371. .bounceOut {
  372. animation-name: bounceOut
  373. }
  374. @keyframes bounceOutDown {
  375. 20% {
  376. transform: translate3d(0,10px,0)
  377. }
  378. 40%,45% {
  379. opacity: 1;
  380. transform: translate3d(0,-20px,0)
  381. }
  382. to {
  383. opacity: 0;
  384. transform: translate3d(0,2000px,0)
  385. }
  386. }
  387. .bounceOutDown {
  388. animation-name: bounceOutDown
  389. }
  390. @keyframes bounceOutLeft {
  391. 20% {
  392. opacity: 1;
  393. transform: translate3d(20px,0,0)
  394. }
  395. to {
  396. opacity: 0;
  397. transform: translate3d(-2000px,0,0)
  398. }
  399. }
  400. .bounceOutLeft {
  401. animation-name: bounceOutLeft
  402. }
  403. @keyframes bounceOutRight {
  404. 20% {
  405. opacity: 1;
  406. transform: translate3d(-20px,0,0)
  407. }
  408. to {
  409. opacity: 0;
  410. transform: translate3d(2000px,0,0)
  411. }
  412. }
  413. .bounceOutRight {
  414. animation-name: bounceOutRight
  415. }
  416. @keyframes bounceOutUp {
  417. 20% {
  418. transform: translate3d(0,-10px,0)
  419. }
  420. 40%,45% {
  421. opacity: 1;
  422. transform: translate3d(0,20px,0)
  423. }
  424. to {
  425. opacity: 0;
  426. transform: translate3d(0,-2000px,0)
  427. }
  428. }
  429. .bounceOutUp {
  430. animation-name: bounceOutUp
  431. }
  432. @keyframes fadeIn {
  433. 0% {
  434. opacity: 0
  435. }
  436. to {
  437. opacity: 1
  438. }
  439. }
  440. .fadeIn {
  441. animation-name: fadeIn
  442. }
  443. @keyframes fadeInDown {
  444. 0% {
  445. opacity: 0;
  446. transform: translate3d(0,-100%,0)
  447. }
  448. to {
  449. opacity: 1;
  450. transform: none
  451. }
  452. }
  453. .fadeInDown {
  454. animation-name: fadeInDown
  455. }
  456. @keyframes fadeInDownBig {
  457. 0% {
  458. opacity: 0;
  459. transform: translate3d(0,-2000px,0)
  460. }
  461. to {
  462. opacity: 1;
  463. transform: none
  464. }
  465. }
  466. .fadeInDownBig {
  467. animation-name: fadeInDownBig
  468. }
  469. @keyframes fadeInLeft {
  470. 0% {
  471. opacity: 0;
  472. transform: translate3d(-100%,0,0)
  473. }
  474. to {
  475. opacity: 1;
  476. transform: none
  477. }
  478. }
  479. .fadeInLeft {
  480. animation-name: fadeInLeft
  481. }
  482. @keyframes fadeInLeftBig {
  483. 0% {
  484. opacity: 0;
  485. transform: translate3d(-2000px,0,0)
  486. }
  487. to {
  488. opacity: 1;
  489. transform: none
  490. }
  491. }
  492. .fadeInLeftBig {
  493. animation-name: fadeInLeftBig
  494. }
  495. @keyframes fadeInRight {
  496. 0% {
  497. opacity: 0;
  498. transform: translate3d(100%,0,0)
  499. }
  500. to {
  501. opacity: 1;
  502. transform: none
  503. }
  504. }
  505. .fadeInRight {
  506. animation-name: fadeInRight
  507. }
  508. @keyframes fadeInRightBig {
  509. 0% {
  510. opacity: 0;
  511. transform: translate3d(2000px,0,0)
  512. }
  513. to {
  514. opacity: 1;
  515. transform: none
  516. }
  517. }
  518. .fadeInRightBig {
  519. animation-name: fadeInRightBig
  520. }
  521. @keyframes fadeInUp {
  522. 0% {
  523. opacity: 0;
  524. transform: translate3d(0,100%,0)
  525. }
  526. to {
  527. opacity: 1;
  528. transform: none
  529. }
  530. }
  531. .fadeInUp {
  532. animation-name: fadeInUp
  533. }
  534. @keyframes fadeInUpBig {
  535. 0% {
  536. opacity: 0;
  537. transform: translate3d(0,2000px,0)
  538. }
  539. to {
  540. opacity: 1;
  541. transform: none
  542. }
  543. }
  544. .fadeInUpBig {
  545. animation-name: fadeInUpBig
  546. }
  547. @keyframes fadeOut {
  548. 0% {
  549. opacity: 1
  550. }
  551. to {
  552. opacity: 0
  553. }
  554. }
  555. .fadeOut {
  556. animation-name: fadeOut
  557. }
  558. @keyframes fadeOutDown {
  559. 0% {
  560. opacity: 1
  561. }
  562. to {
  563. opacity: 0;
  564. transform: translate3d(0,100%,0)
  565. }
  566. }
  567. .fadeOutDown {
  568. animation-name: fadeOutDown
  569. }
  570. @keyframes fadeOutDownBig {
  571. 0% {
  572. opacity: 1
  573. }
  574. to {
  575. opacity: 0;
  576. transform: translate3d(0,2000px,0)
  577. }
  578. }
  579. .fadeOutDownBig {
  580. animation-name: fadeOutDownBig
  581. }
  582. @keyframes fadeOutLeft {
  583. 0% {
  584. opacity: 1
  585. }
  586. to {
  587. opacity: 0;
  588. transform: translate3d(-100%,0,0)
  589. }
  590. }
  591. .fadeOutLeft {
  592. animation-name: fadeOutLeft
  593. }
  594. @keyframes fadeOutLeftBig {
  595. 0% {
  596. opacity: 1
  597. }
  598. to {
  599. opacity: 0;
  600. transform: translate3d(-2000px,0,0)
  601. }
  602. }
  603. .fadeOutLeftBig {
  604. animation-name: fadeOutLeftBig
  605. }
  606. @keyframes fadeOutRight {
  607. 0% {
  608. opacity: 1
  609. }
  610. to {
  611. opacity: 0;
  612. transform: translate3d(100%,0,0)
  613. }
  614. }
  615. .fadeOutRight {
  616. animation-name: fadeOutRight
  617. }
  618. @keyframes fadeOutRightBig {
  619. 0% {
  620. opacity: 1
  621. }
  622. to {
  623. opacity: 0;
  624. transform: translate3d(2000px,0,0)
  625. }
  626. }
  627. .fadeOutRightBig {
  628. animation-name: fadeOutRightBig
  629. }
  630. @keyframes fadeOutUp {
  631. 0% {
  632. opacity: 1
  633. }
  634. to {
  635. opacity: 0;
  636. transform: translate3d(0,-100%,0)
  637. }
  638. }
  639. .fadeOutUp {
  640. animation-name: fadeOutUp
  641. }
  642. @keyframes fadeOutUpBig {
  643. 0% {
  644. opacity: 1
  645. }
  646. to {
  647. opacity: 0;
  648. transform: translate3d(0,-2000px,0)
  649. }
  650. }
  651. .fadeOutUpBig {
  652. animation-name: fadeOutUpBig
  653. }
  654. @keyframes flip {
  655. 0% {
  656. transform: perspective(400px) rotateY(-1turn);
  657. animation-timing-function: ease-out
  658. }
  659. 40% {
  660. transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  661. animation-timing-function: ease-out
  662. }
  663. 50% {
  664. transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  665. animation-timing-function: ease-in
  666. }
  667. 80% {
  668. transform: perspective(400px) scale3d(.95,.95,.95);
  669. animation-timing-function: ease-in
  670. }
  671. to {
  672. transform: perspective(400px);
  673. animation-timing-function: ease-in
  674. }
  675. }
  676. .animated.flip {
  677. -webkit-backface-visibility: visible;
  678. backface-visibility: visible;
  679. animation-name: flip
  680. }
  681. @keyframes flipInX {
  682. 0% {
  683. transform: perspective(400px) rotateX(90deg);
  684. animation-timing-function: ease-in;
  685. opacity: 0
  686. }
  687. 40% {
  688. transform: perspective(400px) rotateX(-20deg);
  689. animation-timing-function: ease-in
  690. }
  691. 60% {
  692. transform: perspective(400px) rotateX(10deg);
  693. opacity: 1
  694. }
  695. 80% {
  696. transform: perspective(400px) rotateX(-5deg)
  697. }
  698. to {
  699. transform: perspective(400px)
  700. }
  701. }
  702. .flipInX {
  703. -webkit-backface-visibility: visible !important;
  704. backface-visibility: visible !important;
  705. animation-name: flipInX
  706. }
  707. @keyframes flipInY {
  708. 0% {
  709. transform: perspective(400px) rotateY(90deg);
  710. animation-timing-function: ease-in;
  711. opacity: 0
  712. }
  713. 40% {
  714. transform: perspective(400px) rotateY(-20deg);
  715. animation-timing-function: ease-in
  716. }
  717. 60% {
  718. transform: perspective(400px) rotateY(10deg);
  719. opacity: 1
  720. }
  721. 80% {
  722. transform: perspective(400px) rotateY(-5deg)
  723. }
  724. to {
  725. transform: perspective(400px)
  726. }
  727. }
  728. .flipInY {
  729. -webkit-backface-visibility: visible !important;
  730. backface-visibility: visible !important;
  731. animation-name: flipInY
  732. }
  733. @keyframes flipOutX {
  734. 0% {
  735. transform: perspective(400px)
  736. }
  737. 30% {
  738. transform: perspective(400px) rotateX(-20deg);
  739. opacity: 1
  740. }
  741. to {
  742. transform: perspective(400px) rotateX(90deg);
  743. opacity: 0
  744. }
  745. }
  746. .flipOutX {
  747. animation-name: flipOutX;
  748. -webkit-backface-visibility: visible !important;
  749. backface-visibility: visible !important
  750. }
  751. @keyframes flipOutY {
  752. 0% {
  753. transform: perspective(400px)
  754. }
  755. 30% {
  756. transform: perspective(400px) rotateY(-15deg);
  757. opacity: 1
  758. }
  759. to {
  760. transform: perspective(400px) rotateY(90deg);
  761. opacity: 0
  762. }
  763. }
  764. .flipOutY {
  765. -webkit-backface-visibility: visible !important;
  766. backface-visibility: visible !important;
  767. animation-name: flipOutY
  768. }
  769. @keyframes lightSpeedIn {
  770. 0% {
  771. transform: translate3d(100%,0,0) skewX(-30deg);
  772. opacity: 0
  773. }
  774. 60% {
  775. transform: skewX(20deg);
  776. opacity: 1
  777. }
  778. 80% {
  779. transform: skewX(-5deg);
  780. opacity: 1
  781. }
  782. to {
  783. transform: none;
  784. opacity: 1
  785. }
  786. }
  787. .lightSpeedIn {
  788. animation-name: lightSpeedIn;
  789. animation-timing-function: ease-out
  790. }
  791. @keyframes lightSpeedOut {
  792. 0% {
  793. opacity: 1
  794. }
  795. to {
  796. transform: translate3d(100%,0,0) skewX(30deg);
  797. opacity: 0
  798. }
  799. }
  800. .lightSpeedOut {
  801. animation-name: lightSpeedOut;
  802. animation-timing-function: ease-in
  803. }
  804. @keyframes rotateIn {
  805. 0% {
  806. transform-origin: center;
  807. transform: rotate(-200deg);
  808. opacity: 0
  809. }
  810. to {
  811. transform-origin: center;
  812. transform: none;
  813. opacity: 1
  814. }
  815. }
  816. .rotateIn {
  817. animation-name: rotateIn
  818. }
  819. @keyframes rotateInDownLeft {
  820. 0% {
  821. transform-origin: left bottom;
  822. transform: rotate(-45deg);
  823. opacity: 0
  824. }
  825. to {
  826. transform-origin: left bottom;
  827. transform: none;
  828. opacity: 1
  829. }
  830. }
  831. .rotateInDownLeft {
  832. animation-name: rotateInDownLeft
  833. }
  834. @keyframes rotateInDownRight {
  835. 0% {
  836. transform-origin: right bottom;
  837. transform: rotate(45deg);
  838. opacity: 0
  839. }
  840. to {
  841. transform-origin: right bottom;
  842. transform: none;
  843. opacity: 1
  844. }
  845. }
  846. .rotateInDownRight {
  847. animation-name: rotateInDownRight
  848. }
  849. @keyframes rotateInUpLeft {
  850. 0% {
  851. transform-origin: left bottom;
  852. transform: rotate(45deg);
  853. opacity: 0
  854. }
  855. to {
  856. transform-origin: left bottom;
  857. transform: none;
  858. opacity: 1
  859. }
  860. }
  861. .rotateInUpLeft {
  862. animation-name: rotateInUpLeft
  863. }
  864. @keyframes rotateInUpRight {
  865. 0% {
  866. transform-origin: right bottom;
  867. transform: rotate(-90deg);
  868. opacity: 0
  869. }
  870. to {
  871. transform-origin: right bottom;
  872. transform: none;
  873. opacity: 1
  874. }
  875. }
  876. .rotateInUpRight {
  877. animation-name: rotateInUpRight
  878. }
  879. @keyframes rotateOut {
  880. 0% {
  881. transform-origin: center;
  882. opacity: 1
  883. }
  884. to {
  885. transform-origin: center;
  886. transform: rotate(200deg);
  887. opacity: 0
  888. }
  889. }
  890. .rotateOut {
  891. animation-name: rotateOut
  892. }
  893. @keyframes rotateOutDownLeft {
  894. 0% {
  895. transform-origin: left bottom;
  896. opacity: 1
  897. }
  898. to {
  899. transform-origin: left bottom;
  900. transform: rotate(45deg);
  901. opacity: 0
  902. }
  903. }
  904. .rotateOutDownLeft {
  905. animation-name: rotateOutDownLeft
  906. }
  907. @keyframes rotateOutDownRight {
  908. 0% {
  909. transform-origin: right bottom;
  910. opacity: 1
  911. }
  912. to {
  913. transform-origin: right bottom;
  914. transform: rotate(-45deg);
  915. opacity: 0
  916. }
  917. }
  918. .rotateOutDownRight {
  919. animation-name: rotateOutDownRight
  920. }
  921. @keyframes rotateOutUpLeft {
  922. 0% {
  923. transform-origin: left bottom;
  924. opacity: 1
  925. }
  926. to {
  927. transform-origin: left bottom;
  928. transform: rotate(-45deg);
  929. opacity: 0
  930. }
  931. }
  932. .rotateOutUpLeft {
  933. animation-name: rotateOutUpLeft
  934. }
  935. @keyframes rotateOutUpRight {
  936. 0% {
  937. transform-origin: right bottom;
  938. opacity: 1
  939. }
  940. to {
  941. transform-origin: right bottom;
  942. transform: rotate(90deg);
  943. opacity: 0
  944. }
  945. }
  946. .rotateOutUpRight {
  947. animation-name: rotateOutUpRight
  948. }
  949. @keyframes hinge {
  950. 0% {
  951. transform-origin: top left;
  952. animation-timing-function: ease-in-out
  953. }
  954. 20%,60% {
  955. transform: rotate(80deg);
  956. transform-origin: top left;
  957. animation-timing-function: ease-in-out
  958. }
  959. 40%,80% {
  960. transform: rotate(60deg);
  961. transform-origin: top left;
  962. animation-timing-function: ease-in-out;
  963. opacity: 1
  964. }
  965. to {
  966. transform: translate3d(0,700px,0);
  967. opacity: 0
  968. }
  969. }
  970. .hinge {
  971. animation-name: hinge
  972. }
  973. @keyframes jackInTheBox {
  974. 0% {
  975. opacity: 0;
  976. transform: scale(.1) rotate(30deg);
  977. transform-origin: center bottom
  978. }
  979. 50% {
  980. transform: rotate(-10deg)
  981. }
  982. 70% {
  983. transform: rotate(3deg)
  984. }
  985. to {
  986. opacity: 1;
  987. transform: scale(1)
  988. }
  989. }
  990. .jackInTheBox {
  991. animation-name: jackInTheBox
  992. }
  993. @keyframes rollIn {
  994. 0% {
  995. opacity: 0;
  996. transform: translate3d(-100%,0,0) rotate(-120deg)
  997. }
  998. to {
  999. opacity: 1;
  1000. transform: none
  1001. }
  1002. }
  1003. .rollIn {
  1004. animation-name: rollIn
  1005. }
  1006. @keyframes rollOut {
  1007. 0% {
  1008. opacity: 1
  1009. }
  1010. to {
  1011. opacity: 0;
  1012. transform: translate3d(100%,0,0) rotate(120deg)
  1013. }
  1014. }
  1015. .rollOut {
  1016. animation-name: rollOut
  1017. }
  1018. @keyframes zoomIn {
  1019. 0% {
  1020. opacity: 0;
  1021. transform: scale3d(.3,.3,.3)
  1022. }
  1023. 50% {
  1024. opacity: 1
  1025. }
  1026. }
  1027. .zoomIn {
  1028. animation-name: zoomIn
  1029. }
  1030. @keyframes zoomInDown {
  1031. 0% {
  1032. opacity: 0;
  1033. transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
  1034. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1035. }
  1036. 60% {
  1037. opacity: 1;
  1038. transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
  1039. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1040. }
  1041. }
  1042. .zoomInDown {
  1043. animation-name: zoomInDown
  1044. }
  1045. @keyframes zoomInLeft {
  1046. 0% {
  1047. opacity: 0;
  1048. transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
  1049. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1050. }
  1051. 60% {
  1052. opacity: 1;
  1053. transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
  1054. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1055. }
  1056. }
  1057. .zoomInLeft {
  1058. animation-name: zoomInLeft
  1059. }
  1060. @keyframes zoomInRight {
  1061. 0% {
  1062. opacity: 0;
  1063. transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
  1064. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1065. }
  1066. 60% {
  1067. opacity: 1;
  1068. transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
  1069. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1070. }
  1071. }
  1072. .zoomInRight {
  1073. animation-name: zoomInRight
  1074. }
  1075. @keyframes zoomInUp {
  1076. 0% {
  1077. opacity: 0;
  1078. transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
  1079. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1080. }
  1081. 60% {
  1082. opacity: 1;
  1083. transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
  1084. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1085. }
  1086. }
  1087. .zoomInUp {
  1088. animation-name: zoomInUp
  1089. }
  1090. @keyframes zoomOut {
  1091. 0% {
  1092. opacity: 1
  1093. }
  1094. 50% {
  1095. opacity: 0;
  1096. transform: scale3d(.3,.3,.3)
  1097. }
  1098. to {
  1099. opacity: 0
  1100. }
  1101. }
  1102. .zoomOut {
  1103. animation-name: zoomOut
  1104. }
  1105. @keyframes zoomOutDown {
  1106. 40% {
  1107. opacity: 1;
  1108. transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
  1109. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1110. }
  1111. to {
  1112. opacity: 0;
  1113. transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
  1114. transform-origin: center bottom;
  1115. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1116. }
  1117. }
  1118. .zoomOutDown {
  1119. animation-name: zoomOutDown
  1120. }
  1121. @keyframes zoomOutLeft {
  1122. 40% {
  1123. opacity: 1;
  1124. transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
  1125. }
  1126. to {
  1127. opacity: 0;
  1128. transform: scale(.1) translate3d(-2000px,0,0);
  1129. transform-origin: left center
  1130. }
  1131. }
  1132. .zoomOutLeft {
  1133. animation-name: zoomOutLeft
  1134. }
  1135. @keyframes zoomOutRight {
  1136. 40% {
  1137. opacity: 1;
  1138. transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
  1139. }
  1140. to {
  1141. opacity: 0;
  1142. transform: scale(.1) translate3d(2000px,0,0);
  1143. transform-origin: right center
  1144. }
  1145. }
  1146. .zoomOutRight {
  1147. animation-name: zoomOutRight
  1148. }
  1149. @keyframes zoomOutUp {
  1150. 40% {
  1151. opacity: 1;
  1152. transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
  1153. animation-timing-function: cubic-bezier(.55,.055,.675,.19)
  1154. }
  1155. to {
  1156. opacity: 0;
  1157. transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
  1158. transform-origin: center bottom;
  1159. animation-timing-function: cubic-bezier(.175,.885,.32,1)
  1160. }
  1161. }
  1162. .zoomOutUp {
  1163. animation-name: zoomOutUp
  1164. }
  1165. @keyframes slideInDown {
  1166. 0% {
  1167. transform: translate3d(0,-100%,0);
  1168. visibility: visible
  1169. }
  1170. to {
  1171. transform: translateZ(0)
  1172. }
  1173. }
  1174. .slideInDown {
  1175. animation-name: slideInDown
  1176. }
  1177. @keyframes slideInLeft {
  1178. 0% {
  1179. transform: translate3d(-100%,0,0);
  1180. visibility: visible
  1181. }
  1182. to {
  1183. transform: translateZ(0)
  1184. }
  1185. }
  1186. .slideInLeft {
  1187. animation-name: slideInLeft
  1188. }
  1189. @keyframes slideInRight {
  1190. 0% {
  1191. transform: translate3d(100%,0,0);
  1192. visibility: visible
  1193. }
  1194. to {
  1195. transform: translateZ(0)
  1196. }
  1197. }
  1198. .slideInRight {
  1199. animation-name: slideInRight
  1200. }
  1201. @keyframes slideInUp {
  1202. 0% {
  1203. transform: translate3d(0,100%,0);
  1204. visibility: visible
  1205. }
  1206. to {
  1207. transform: translateZ(0)
  1208. }
  1209. }
  1210. .slideInUp {
  1211. animation-name: slideInUp
  1212. }
  1213. @keyframes slideOutDown {
  1214. 0% {
  1215. transform: translateZ(0)
  1216. }
  1217. to {
  1218. visibility: hidden;
  1219. transform: translate3d(0,100%,0)
  1220. }
  1221. }
  1222. .slideOutDown {
  1223. animation-name: slideOutDown
  1224. }
  1225. @keyframes slideOutLeft {
  1226. 0% {
  1227. transform: translateZ(0)
  1228. }
  1229. to {
  1230. visibility: hidden;
  1231. transform: translate3d(-100%,0,0)
  1232. }
  1233. }
  1234. .slideOutLeft {
  1235. animation-name: slideOutLeft
  1236. }
  1237. @keyframes slideOutRight {
  1238. 0% {
  1239. transform: translateZ(0)
  1240. }
  1241. to {
  1242. visibility: hidden;
  1243. transform: translate3d(100%,0,0)
  1244. }
  1245. }
  1246. .slideOutRight {
  1247. animation-name: slideOutRight
  1248. }
  1249. @keyframes slideOutUp {
  1250. 0% {
  1251. transform: translateZ(0)
  1252. }
  1253. to {
  1254. visibility: hidden;
  1255. transform: translate3d(0,-100%,0)
  1256. }
  1257. }
  1258. .slideOutUp {
  1259. animation-name: slideOutUp
  1260. }