@zyzgroup/core-web 0.0.75 → 0.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (262) hide show
  1. package/dist/animate_ce.css +615 -0
  2. package/dist/zyzgroup_core_web.iife.js +16 -16
  3. package/dist/zyzgroup_core_web.iife.js.map +1 -1
  4. package/dist/zyzgroup_core_web.js +13539 -12642
  5. package/dist/zyzgroup_core_web.js.map +1 -1
  6. package/dist/zyzgroup_core_web.umd.cjs +16 -16
  7. package/dist/zyzgroup_core_web.umd.cjs.map +1 -1
  8. package/package.json +1 -1
  9. package/types/YZWorker.d.ts.map +1 -1
  10. package/types/ajax.d.ts +0 -1
  11. package/types/ajax.d.ts.map +1 -1
  12. package/types/animate/Clock.d.ts +14 -0
  13. package/types/animate/Clock.d.ts.map +1 -0
  14. package/types/animate/Timeline.d.ts +43 -0
  15. package/types/animate/Timeline.d.ts.map +1 -0
  16. package/types/animate/{YZAnimate.d.ts → _YZAnimate.d.ts} +3 -3
  17. package/types/animate/_YZAnimate.d.ts.map +1 -0
  18. package/types/animate/index.d.ts +3 -2
  19. package/types/animate/index.d.ts.map +1 -1
  20. package/types/animate/schedule.d.ts +11 -0
  21. package/types/animate/schedule.d.ts.map +1 -0
  22. package/types/animate/tween/BezierEasing.d.ts +8 -0
  23. package/types/animate/tween/BezierEasing.d.ts.map +1 -0
  24. package/types/animate/tween/Easing.d.ts +1 -0
  25. package/types/animate/tween/Easing.d.ts.map +1 -1
  26. package/types/animate/tween/Group.d.ts.map +1 -1
  27. package/types/animate/tween/Interpolation.d.ts +3 -1
  28. package/types/animate/tween/Interpolation.d.ts.map +1 -1
  29. package/types/animate/tween/Now.d.ts +0 -2
  30. package/types/animate/tween/Now.d.ts.map +1 -1
  31. package/types/animate/tween/Tween.d.ts.map +1 -1
  32. package/types/animate/tween/index.d.ts +8 -3
  33. package/types/animate/tween/index.d.ts.map +1 -1
  34. package/types/canvas/YZCanvas.d.ts +6 -5
  35. package/types/canvas/YZCanvas.d.ts.map +1 -1
  36. package/types/canvas/YZCanvasContext.d.ts.map +1 -1
  37. package/types/dom/DOMEventBus.d.ts +68 -42
  38. package/types/dom/DOMEventBus.d.ts.map +1 -1
  39. package/types/dom/DOMKey.d.ts +18 -0
  40. package/types/dom/DOMKey.d.ts.map +1 -1
  41. package/types/dom/DOMUtil.d.ts +18 -6
  42. package/types/dom/DOMUtil.d.ts.map +1 -1
  43. package/types/env.d.ts.map +1 -1
  44. package/types/image/bitmap.d.ts +5 -4
  45. package/types/image/bitmap.d.ts.map +1 -1
  46. package/types/image/image.d.ts +5 -0
  47. package/types/image/image.d.ts.map +1 -1
  48. package/types/index.d.ts +1 -4
  49. package/types/index.d.ts.map +1 -1
  50. package/types/loaders/AudioLoader.d.ts +12 -0
  51. package/types/loaders/AudioLoader.d.ts.map +1 -0
  52. package/types/loaders/Cache.d.ts +10 -0
  53. package/types/loaders/Cache.d.ts.map +1 -0
  54. package/types/loaders/FileLoader.d.ts +16 -0
  55. package/types/loaders/FileLoader.d.ts.map +1 -0
  56. package/types/loaders/ImageBitmapLoader.d.ts +14 -0
  57. package/types/loaders/ImageBitmapLoader.d.ts.map +1 -0
  58. package/types/loaders/ImageLoader.d.ts +11 -0
  59. package/types/loaders/ImageLoader.d.ts.map +1 -0
  60. package/types/loaders/Loader.d.ts +25 -0
  61. package/types/loaders/Loader.d.ts.map +1 -0
  62. package/types/loaders/LoadingManager.d.ts +29 -0
  63. package/types/loaders/LoadingManager.d.ts.map +1 -0
  64. package/types/loaders/index.d.ts +5 -0
  65. package/types/loaders/index.d.ts.map +1 -0
  66. package/types/math/Matrix.d.ts +65 -32
  67. package/types/math/Matrix.d.ts.map +1 -1
  68. package/types/math/Shape.d.ts +127 -84
  69. package/types/math/Shape.d.ts.map +1 -1
  70. package/types/math/ShapeCombo.d.ts +38 -0
  71. package/types/math/ShapeCombo.d.ts.map +1 -0
  72. package/types/math/ShapeGroup.d.ts +28 -14
  73. package/types/math/ShapeGroup.d.ts.map +1 -1
  74. package/types/math/index.d.ts +1 -15
  75. package/types/math/index.d.ts.map +1 -1
  76. package/types/math/line/Arc.d.ts +25 -0
  77. package/types/math/line/Arc.d.ts.map +1 -0
  78. package/types/math/{CubicBezier.d.ts → line/CubicBezier.d.ts} +20 -12
  79. package/types/math/line/CubicBezier.d.ts.map +1 -0
  80. package/types/math/line/L.d.ts +33 -0
  81. package/types/math/line/L.d.ts.map +1 -0
  82. package/types/math/line/PathD.d.ts +82 -0
  83. package/types/math/line/PathD.d.ts.map +1 -0
  84. package/types/math/line/QuadraticBezier.d.ts +30 -0
  85. package/types/math/line/QuadraticBezier.d.ts.map +1 -0
  86. package/types/math/line/index.d.ts +6 -0
  87. package/types/math/line/index.d.ts.map +1 -0
  88. package/types/math/math/cameras/Camera.d.ts +12 -0
  89. package/types/math/math/cameras/Camera.d.ts.map +1 -0
  90. package/types/math/math/constants.d.ts +211 -0
  91. package/types/math/math/constants.d.ts.map +1 -0
  92. package/types/math/math/controls/Controls.d.ts +25 -0
  93. package/types/math/math/controls/Controls.d.ts.map +1 -0
  94. package/types/math/math/controls/OrbitControls.d.ts +1 -0
  95. package/types/math/math/controls/OrbitControls.d.ts.map +1 -0
  96. package/types/math/math/core/BufferAttribute.d.ts +94 -0
  97. package/types/math/math/core/BufferAttribute.d.ts.map +1 -0
  98. package/types/math/math/core/BufferGeometry.d.ts +1 -0
  99. package/types/math/math/core/BufferGeometry.d.ts.map +1 -0
  100. package/types/math/math/core/EventDispatcher.d.ts +14 -0
  101. package/types/math/math/core/EventDispatcher.d.ts.map +1 -0
  102. package/types/math/math/core/GLBufferAttribute.d.ts +19 -0
  103. package/types/math/math/core/GLBufferAttribute.d.ts.map +1 -0
  104. package/types/math/math/core/Layers.d.ts +14 -0
  105. package/types/math/math/core/Layers.d.ts.map +1 -0
  106. package/types/math/math/core/Object3D.d.ts +91 -0
  107. package/types/math/math/core/Object3D.d.ts.map +1 -0
  108. package/types/math/math/index.d.ts +10 -0
  109. package/types/math/math/index.d.ts.map +1 -0
  110. package/types/math/math/interpolants/Interpolant.d.ts +14 -0
  111. package/types/math/math/interpolants/Interpolant.d.ts.map +1 -0
  112. package/types/math/math/math/Box2.d.ts +30 -0
  113. package/types/math/math/math/Box2.d.ts.map +1 -0
  114. package/types/math/math/math/Box3.d.ts +46 -0
  115. package/types/math/math/math/Box3.d.ts.map +1 -0
  116. package/types/math/math/math/Color.d.ts +59 -0
  117. package/types/math/math/math/Color.d.ts.map +1 -0
  118. package/types/math/math/math/ColorManagement.d.ts +20 -0
  119. package/types/math/math/math/ColorManagement.d.ts.map +1 -0
  120. package/types/math/math/math/Cylindrical.d.ts +14 -0
  121. package/types/math/math/math/Cylindrical.d.ts.map +1 -0
  122. package/types/math/math/math/Euler.d.ts +35 -0
  123. package/types/math/math/math/Euler.d.ts.map +1 -0
  124. package/types/math/math/math/Frustum.d.ts +21 -0
  125. package/types/math/math/math/Frustum.d.ts.map +1 -0
  126. package/types/math/math/math/Line3.d.ts +21 -0
  127. package/types/math/math/math/Line3.d.ts.map +1 -0
  128. package/types/math/math/math/Matrix.d.ts +16 -0
  129. package/types/math/math/math/Matrix.d.ts.map +1 -0
  130. package/types/math/math/math/Matrix2.d.ts +19 -0
  131. package/types/math/math/math/Matrix2.d.ts.map +1 -0
  132. package/types/math/math/math/Matrix3.d.ts +46 -0
  133. package/types/math/math/math/Matrix3.d.ts.map +1 -0
  134. package/types/math/math/math/Matrix4.d.ts +66 -0
  135. package/types/math/math/math/Matrix4.d.ts.map +1 -0
  136. package/types/math/math/math/Plane.d.ts +32 -0
  137. package/types/math/math/math/Plane.d.ts.map +1 -0
  138. package/types/math/math/math/Quaternion.d.ts +52 -0
  139. package/types/math/math/math/Quaternion.d.ts.map +1 -0
  140. package/types/math/math/math/Ray.d.ts +32 -0
  141. package/types/math/math/math/Ray.d.ts.map +1 -0
  142. package/types/math/math/math/Sphere.d.ts +29 -0
  143. package/types/math/math/math/Sphere.d.ts.map +1 -0
  144. package/types/math/math/math/Spherical.d.ts +15 -0
  145. package/types/math/math/math/Spherical.d.ts.map +1 -0
  146. package/types/math/math/math/SphericalHarmonics3.d.ts +21 -0
  147. package/types/math/math/math/SphericalHarmonics3.d.ts.map +1 -0
  148. package/types/math/math/math/Triangle.d.ts +35 -0
  149. package/types/math/math/math/Triangle.d.ts.map +1 -0
  150. package/types/math/math/math/Vector.d.ts +19 -0
  151. package/types/math/math/math/Vector.d.ts.map +1 -0
  152. package/types/math/math/math/Vector2.d.ts +66 -0
  153. package/types/math/math/math/Vector2.d.ts.map +1 -0
  154. package/types/math/math/math/Vector3.d.ts +80 -0
  155. package/types/math/math/math/Vector3.d.ts.map +1 -0
  156. package/types/math/math/math/Vector4.d.ts +64 -0
  157. package/types/math/math/math/Vector4.d.ts.map +1 -0
  158. package/types/math/math.d.ts +6 -1
  159. package/types/math/math.d.ts.map +1 -1
  160. package/types/math/shapes/Arrow.d.ts.map +1 -1
  161. package/types/math/{ComboConfetti.d.ts → shapes/Confetti.d.ts} +10 -8
  162. package/types/math/shapes/Confetti.d.ts.map +1 -0
  163. package/types/math/shapes/Cross.d.ts +2 -3
  164. package/types/math/shapes/Cross.d.ts.map +1 -1
  165. package/types/math/{Ellipse.d.ts → shapes/Ellipse.d.ts} +9 -5
  166. package/types/math/shapes/Ellipse.d.ts.map +1 -0
  167. package/types/math/shapes/Fox.d.ts.map +1 -1
  168. package/types/math/shapes/Heart.d.ts +6 -3
  169. package/types/math/shapes/Heart.d.ts.map +1 -1
  170. package/types/math/shapes/HeartVariant.d.ts +6 -3
  171. package/types/math/shapes/HeartVariant.d.ts.map +1 -1
  172. package/types/math/{Light3D.d.ts → shapes/Light3D.d.ts} +2 -5
  173. package/types/math/shapes/Light3D.d.ts.map +1 -0
  174. package/types/math/shapes/Line.d.ts +19 -0
  175. package/types/math/shapes/Line.d.ts.map +1 -0
  176. package/types/math/shapes/LinePicture.d.ts +15 -0
  177. package/types/math/shapes/LinePicture.d.ts.map +1 -0
  178. package/types/math/shapes/LineQuadraticBezier.d.ts +21 -0
  179. package/types/math/shapes/LineQuadraticBezier.d.ts.map +1 -0
  180. package/types/math/shapes/Point.d.ts +85 -0
  181. package/types/math/shapes/Point.d.ts.map +1 -0
  182. package/types/math/{Point3D.d.ts → shapes/Point3D.d.ts} +4 -6
  183. package/types/math/shapes/Point3D.d.ts.map +1 -0
  184. package/types/math/{Point3Ds.d.ts → shapes/Point3Ds.d.ts} +3 -3
  185. package/types/math/shapes/Point3Ds.d.ts.map +1 -0
  186. package/types/math/shapes/Points.d.ts +28 -0
  187. package/types/math/shapes/Points.d.ts.map +1 -0
  188. package/types/math/shapes/Rabbit.d.ts +4 -3
  189. package/types/math/shapes/Rabbit.d.ts.map +1 -1
  190. package/types/math/shapes/Rect.d.ts +33 -0
  191. package/types/math/shapes/Rect.d.ts.map +1 -0
  192. package/types/math/shapes/Ring.d.ts +7 -4
  193. package/types/math/shapes/Ring.d.ts.map +1 -1
  194. package/types/math/shapes/RingIndicator.d.ts +34 -0
  195. package/types/math/shapes/RingIndicator.d.ts.map +1 -0
  196. package/types/math/shapes/Sector.d.ts +15 -4
  197. package/types/math/shapes/Sector.d.ts.map +1 -1
  198. package/types/math/shapes/Segment.d.ts +10 -3
  199. package/types/math/shapes/Segment.d.ts.map +1 -1
  200. package/types/math/shapes/Ship.d.ts +4 -2
  201. package/types/math/shapes/Ship.d.ts.map +1 -1
  202. package/types/math/shapes/Slider.d.ts +7 -13
  203. package/types/math/shapes/Slider.d.ts.map +1 -1
  204. package/types/math/shapes/Star.d.ts +5 -3
  205. package/types/math/shapes/Star.d.ts.map +1 -1
  206. package/types/math/{Text.d.ts → shapes/Text.d.ts} +3 -4
  207. package/types/math/shapes/Text.d.ts.map +1 -0
  208. package/types/math/shapes/Tip.d.ts +8 -9
  209. package/types/math/shapes/Tip.d.ts.map +1 -1
  210. package/types/math/shapes/Tree.d.ts +2 -2
  211. package/types/math/shapes/Tree.d.ts.map +1 -1
  212. package/types/math/shapes/index.d.ts +12 -0
  213. package/types/math/shapes/index.d.ts.map +1 -1
  214. package/types/patch.d.ts.map +1 -1
  215. package/types/position.d.ts +13 -16
  216. package/types/position.d.ts.map +1 -1
  217. package/types/svg/DOMSVGUtil.d.ts +1 -13
  218. package/types/svg/DOMSVGUtil.d.ts.map +1 -1
  219. package/types/svg/YZSVG.d.ts +7 -6
  220. package/types/svg/YZSVG.d.ts.map +1 -1
  221. package/types/theme.d.ts +3 -3
  222. package/types/theme.d.ts.map +1 -1
  223. package/types/YZRequestIdleCallback.d.ts +0 -14
  224. package/types/YZRequestIdleCallback.d.ts.map +0 -1
  225. package/types/animate/YZAnimate.d.ts.map +0 -1
  226. package/types/animate/requestAnimationFrameCycle.d.ts +0 -14
  227. package/types/animate/requestAnimationFrameCycle.d.ts.map +0 -1
  228. package/types/animate/tween/cubicBezierToEase.d.ts +0 -4
  229. package/types/animate/tween/cubicBezierToEase.d.ts.map +0 -1
  230. package/types/math/Arc.d.ts +0 -27
  231. package/types/math/Arc.d.ts.map +0 -1
  232. package/types/math/ComboConfetti.d.ts.map +0 -1
  233. package/types/math/CubicBezier.d.ts.map +0 -1
  234. package/types/math/Ellipse.d.ts.map +0 -1
  235. package/types/math/Light3D.d.ts.map +0 -1
  236. package/types/math/Line.d.ts +0 -28
  237. package/types/math/Line.d.ts.map +0 -1
  238. package/types/math/PathD.d.ts +0 -82
  239. package/types/math/PathD.d.ts.map +0 -1
  240. package/types/math/PathDGroup.d.ts +0 -30
  241. package/types/math/PathDGroup.d.ts.map +0 -1
  242. package/types/math/Point.d.ts +0 -58
  243. package/types/math/Point.d.ts.map +0 -1
  244. package/types/math/Point3D.d.ts.map +0 -1
  245. package/types/math/Point3Ds.d.ts.map +0 -1
  246. package/types/math/Points.d.ts +0 -23
  247. package/types/math/Points.d.ts.map +0 -1
  248. package/types/math/QuadraticBezier.d.ts +0 -26
  249. package/types/math/QuadraticBezier.d.ts.map +0 -1
  250. package/types/math/Rect.d.ts +0 -25
  251. package/types/math/Rect.d.ts.map +0 -1
  252. package/types/math/RenderGroup.d.ts +0 -18
  253. package/types/math/RenderGroup.d.ts.map +0 -1
  254. package/types/math/Text.d.ts.map +0 -1
  255. package/types/microTask.d.ts +0 -2
  256. package/types/microTask.d.ts.map +0 -1
  257. package/types/nextTick.d.ts +0 -3
  258. package/types/nextTick.d.ts.map +0 -1
  259. package/types/reactive.d.ts +0 -14
  260. package/types/reactive.d.ts.map +0 -1
  261. package/types/three/three.d.ts +0 -2
  262. package/types/three/three.d.ts.map +0 -1
@@ -1111,6 +1111,55 @@
1111
1111
  }
1112
1112
  }
1113
1113
 
1114
+ @keyframes flipOutRight {
1115
+ to {
1116
+ transform: translateZ(-1000px) rotateY(90deg);
1117
+ opacity: 0.2;
1118
+ }
1119
+ }
1120
+ @keyframes flipInLeft {
1121
+ from {
1122
+ transform: translateZ(-1000px) rotateY(-90deg);
1123
+ opacity: 0.2;
1124
+ }
1125
+ }
1126
+ @keyframes flipOutLeft {
1127
+ to {
1128
+ transform: translateZ(-1000px) rotateY(-90deg);
1129
+ opacity: 0.2;
1130
+ }
1131
+ }
1132
+ @keyframes flipInRight {
1133
+ from {
1134
+ transform: translateZ(-1000px) rotateY(90deg);
1135
+ opacity: 0.2;
1136
+ }
1137
+ }
1138
+ @keyframes flipOutTop {
1139
+ to {
1140
+ transform: translateZ(-1000px) rotateX(90deg);
1141
+ opacity: 0.2;
1142
+ }
1143
+ }
1144
+ @keyframes flipInBottom {
1145
+ from {
1146
+ transform: translateZ(-1000px) rotateX(-90deg);
1147
+ opacity: 0.2;
1148
+ }
1149
+ }
1150
+ @keyframes flipOutBottom {
1151
+ to {
1152
+ transform: translateZ(-1000px) rotateX(-90deg);
1153
+ opacity: 0.2;
1154
+ }
1155
+ }
1156
+ @keyframes flipInTop {
1157
+ from {
1158
+ transform: translateZ(-1000px) rotateX(90deg);
1159
+ opacity: 0.2;
1160
+ }
1161
+ }
1162
+
1114
1163
  @keyframes lightSpeedInLeft {
1115
1164
  from {
1116
1165
  transform: translate3d(-100%, 0, 0) skewX(30deg);
@@ -1312,6 +1361,38 @@
1312
1361
  }
1313
1362
  }
1314
1363
 
1364
+ @keyframes rotateFall {
1365
+ 0% {
1366
+ transform: rotateZ(0deg);
1367
+ }
1368
+ 20% {
1369
+ transform: rotateZ(10deg);
1370
+ animation-timing-function: ease-out;
1371
+ }
1372
+ 40% {
1373
+ transform: rotateZ(17deg);
1374
+ }
1375
+ 60% {
1376
+ transform: rotateZ(16deg);
1377
+ }
1378
+ 100% {
1379
+ transform: translateY(100%) rotateZ(17deg);
1380
+ }
1381
+ }
1382
+
1383
+ @keyframes rotateOutNewspaper {
1384
+ to {
1385
+ transform: translateZ(-3000px) rotateZ(360deg);
1386
+ opacity: 0;
1387
+ }
1388
+ }
1389
+ @keyframes rotateInNewspaper {
1390
+ from {
1391
+ transform: translateZ(-3000px) rotateZ(-360deg);
1392
+ opacity: 0;
1393
+ }
1394
+ }
1395
+
1315
1396
  @keyframes jackInTheBox {
1316
1397
  from {
1317
1398
  opacity: 0;
@@ -1577,3 +1658,537 @@
1577
1658
  transform: translate3d(0, 100%, 0);
1578
1659
  }
1579
1660
  }
1661
+
1662
+ @keyframes rotateRightSideFirst {
1663
+ 40% {
1664
+ transform: rotateY(15deg);
1665
+ opacity: 0.8;
1666
+ animation-timing-function: ease-out;
1667
+ }
1668
+ 100% {
1669
+ transform: scale(0.8) translateZ(-200px);
1670
+ opacity: 0;
1671
+ }
1672
+ }
1673
+ @keyframes rotateLeftSideFirst {
1674
+ 40% {
1675
+ transform: rotateY(-15deg);
1676
+ opacity: 0.8;
1677
+ animation-timing-function: ease-out;
1678
+ }
1679
+ 100% {
1680
+ transform: scale(0.8) translateZ(-200px);
1681
+ opacity: 0;
1682
+ }
1683
+ }
1684
+ @keyframes rotateTopSideFirst {
1685
+ 40% {
1686
+ transform: rotateX(15deg);
1687
+ opacity: 0.8;
1688
+ animation-timing-function: ease-out;
1689
+ }
1690
+ 100% {
1691
+ transform: scale(0.8) translateZ(-200px);
1692
+ opacity: 0;
1693
+ }
1694
+ }
1695
+ @keyframes rotateBottomSideFirst {
1696
+ 40% {
1697
+ transform: rotateX(-15deg);
1698
+ opacity: 0.8;
1699
+ animation-timing-function: ease-out;
1700
+ }
1701
+ 100% {
1702
+ transform: scale(0.8) translateZ(-200px);
1703
+ opacity: 0;
1704
+ }
1705
+ }
1706
+
1707
+ @keyframes rotatePushLeft {
1708
+ to {
1709
+ opacity: 0;
1710
+ transform: rotateY(90deg);
1711
+ }
1712
+ }
1713
+ @keyframes rotatePushRight {
1714
+ to {
1715
+ opacity: 0;
1716
+ transform: rotateY(-90deg);
1717
+ }
1718
+ }
1719
+ @keyframes rotatePushTop {
1720
+ to {
1721
+ opacity: 0;
1722
+ transform: rotateX(-90deg);
1723
+ }
1724
+ }
1725
+ @keyframes rotatePushBottom {
1726
+ to {
1727
+ opacity: 0;
1728
+ transform: rotateX(90deg);
1729
+ }
1730
+ }
1731
+ @keyframes rotatePullRight {
1732
+ from {
1733
+ opacity: 0;
1734
+ transform: rotateY(-90deg);
1735
+ }
1736
+ }
1737
+ @keyframes rotatePullLeft {
1738
+ from {
1739
+ opacity: 0;
1740
+ transform: rotateY(90deg);
1741
+ }
1742
+ }
1743
+ @keyframes rotatePullTop {
1744
+ from {
1745
+ opacity: 0;
1746
+ transform: rotateX(-90deg);
1747
+ }
1748
+ }
1749
+ @keyframes rotatePullBottom {
1750
+ from {
1751
+ opacity: 0;
1752
+ transform: rotateX(90deg);
1753
+ }
1754
+ }
1755
+
1756
+ @keyframes rotateFoldRight {
1757
+ to {
1758
+ opacity: 0;
1759
+ transform: translateX(100%) rotateY(90deg);
1760
+ }
1761
+ }
1762
+ @keyframes rotateFoldLeft {
1763
+ to {
1764
+ opacity: 0;
1765
+ transform: translateX(-100%) rotateY(-90deg);
1766
+ }
1767
+ }
1768
+ @keyframes rotateFoldTop {
1769
+ to {
1770
+ opacity: 0;
1771
+ transform: translateY(-100%) rotateX(90deg);
1772
+ }
1773
+ }
1774
+ @keyframes rotateFoldBottom {
1775
+ to {
1776
+ opacity: 0;
1777
+ transform: translateY(100%) rotateX(-90deg);
1778
+ }
1779
+ }
1780
+ @keyframes rotateUnfoldLeft {
1781
+ from {
1782
+ opacity: 0;
1783
+ transform: translateX(-100%) rotateY(-90deg);
1784
+ }
1785
+ }
1786
+ @keyframes rotateUnfoldRight {
1787
+ from {
1788
+ opacity: 0;
1789
+ transform: translateX(100%) rotateY(90deg);
1790
+ }
1791
+ }
1792
+ @keyframes rotateUnfoldTop {
1793
+ from {
1794
+ opacity: 0;
1795
+ transform: translateY(-100%) rotateX(90deg);
1796
+ }
1797
+ }
1798
+ @keyframes rotateUnfoldBottom {
1799
+ from {
1800
+ opacity: 0;
1801
+ transform: translateY(100%) rotateX(-90deg);
1802
+ }
1803
+ }
1804
+
1805
+ @keyframes moveToLeft {
1806
+ to {
1807
+ transform: translateX(-100%);
1808
+ }
1809
+ }
1810
+ @keyframes moveFromLeft {
1811
+ from {
1812
+ transform: translateX(-100%);
1813
+ }
1814
+ }
1815
+ @keyframes moveToRight {
1816
+ to {
1817
+ transform: translateX(100%);
1818
+ }
1819
+ }
1820
+ @keyframes moveFromRight {
1821
+ from {
1822
+ transform: translateX(100%);
1823
+ }
1824
+ }
1825
+ @keyframes moveToTop {
1826
+ to {
1827
+ transform: translateY(-100%);
1828
+ }
1829
+ }
1830
+ @keyframes moveFromTop {
1831
+ from {
1832
+ transform: translateY(-100%);
1833
+ }
1834
+ }
1835
+ @keyframes moveToBottom {
1836
+ to {
1837
+ transform: translateY(100%);
1838
+ }
1839
+ }
1840
+ @keyframes moveFromBottom {
1841
+ from {
1842
+ transform: translateY(100%);
1843
+ }
1844
+ }
1845
+
1846
+ @keyframes fade {
1847
+ to {
1848
+ opacity: 0.3;
1849
+ }
1850
+ }
1851
+ @keyframes moveToLeftFade {
1852
+ to {
1853
+ opacity: 0.3;
1854
+ transform: translateX(-100%);
1855
+ }
1856
+ }
1857
+ @keyframes moveFromLeftFade {
1858
+ from {
1859
+ opacity: 0.3;
1860
+ transform: translateX(-100%);
1861
+ }
1862
+ }
1863
+ @keyframes moveToRightFade {
1864
+ to {
1865
+ opacity: 0.3;
1866
+ transform: translateX(100%);
1867
+ }
1868
+ }
1869
+ @keyframes moveFromRightFade {
1870
+ from {
1871
+ opacity: 0.3;
1872
+ transform: translateX(100%);
1873
+ }
1874
+ }
1875
+ @keyframes moveToTopFade {
1876
+ to {
1877
+ opacity: 0.3;
1878
+ transform: translateY(-100%);
1879
+ }
1880
+ }
1881
+ @keyframes moveFromTopFade {
1882
+ from {
1883
+ opacity: 0.3;
1884
+ transform: translateY(-100%);
1885
+ }
1886
+ }
1887
+ @keyframes moveToBottomFade {
1888
+ to {
1889
+ opacity: 0.3;
1890
+ transform: translateY(100%);
1891
+ }
1892
+ }
1893
+ @keyframes moveFromBottomFade {
1894
+ from {
1895
+ opacity: 0.3;
1896
+ transform: translateY(100%);
1897
+ }
1898
+ }
1899
+
1900
+ @keyframes scaleToSmall {
1901
+ to {
1902
+ opacity: 0;
1903
+ transform: scale(0.8);
1904
+ }
1905
+ }
1906
+ @keyframes scaleFromSmall {
1907
+ from {
1908
+ opacity: 0;
1909
+ transform: scale(0.8);
1910
+ }
1911
+ }
1912
+ @keyframes scaleFromLarge {
1913
+ from {
1914
+ opacity: 0;
1915
+ transform: scale(1.2);
1916
+ }
1917
+ }
1918
+ @keyframes scaleToLarge {
1919
+ to {
1920
+ opacity: 0;
1921
+ transform: scale(1.2);
1922
+ }
1923
+ }
1924
+ @keyframes scaleToSmallCenter {
1925
+ to {
1926
+ opacity: 0;
1927
+ transform: scale(0.7);
1928
+ }
1929
+ }
1930
+ @keyframes scaleFromSmallCenter {
1931
+ from {
1932
+ opacity: 0;
1933
+ transform: scale(0.7);
1934
+ }
1935
+ }
1936
+
1937
+ @keyframes rotateRoomLeftOut {
1938
+ to {
1939
+ opacity: 0.3;
1940
+ transform: translateX(-100%) rotateY(90deg);
1941
+ }
1942
+ }
1943
+ @keyframes rotateRoomLeftIn {
1944
+ from {
1945
+ opacity: 0.3;
1946
+ transform: translateX(100%) rotateY(-90deg);
1947
+ }
1948
+ }
1949
+ @keyframes rotateRoomRightOut {
1950
+ to {
1951
+ opacity: 0.3;
1952
+ transform: translateX(100%) rotateY(-90deg);
1953
+ }
1954
+ }
1955
+ @keyframes rotateRoomRightIn {
1956
+ from {
1957
+ opacity: 0.3;
1958
+ transform: translateX(-100%) rotateY(90deg);
1959
+ }
1960
+ }
1961
+ @keyframes rotateRoomTopOut {
1962
+ to {
1963
+ opacity: 0.3;
1964
+ transform: translateY(-100%) rotateX(-90deg);
1965
+ }
1966
+ }
1967
+ @keyframes rotateRoomTopIn {
1968
+ from {
1969
+ opacity: 0.3;
1970
+ transform: translateY(100%) rotateX(90deg);
1971
+ }
1972
+ }
1973
+ @keyframes rotateRoomBottomOut {
1974
+ to {
1975
+ opacity: 0.3;
1976
+ transform: translateY(100%) rotateX(90deg);
1977
+ }
1978
+ }
1979
+ @keyframes rotateRoomBottomIn {
1980
+ from {
1981
+ opacity: 0.3;
1982
+ transform: translateY(-100%) rotateX(-90deg);
1983
+ }
1984
+ }
1985
+
1986
+ @keyframes rotateCubeLeftOut {
1987
+ 50% {
1988
+ animation-timing-function: ease-out;
1989
+ transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
1990
+ }
1991
+ 100% {
1992
+ opacity: 0.3;
1993
+ transform: translateX(-100%) rotateY(-90deg);
1994
+ }
1995
+ }
1996
+ @keyframes rotateCubeLeftIn {
1997
+ 0% {
1998
+ opacity: 0.3;
1999
+ transform: translateX(100%) rotateY(90deg);
2000
+ }
2001
+ 50% {
2002
+ animation-timing-function: ease-out;
2003
+ transform: translateX(50%) translateZ(-200px) rotateY(45deg);
2004
+ }
2005
+ }
2006
+ @keyframes rotateCubeRightOut {
2007
+ 50% {
2008
+ animation-timing-function: ease-out;
2009
+ transform: translateX(50%) translateZ(-200px) rotateY(45deg);
2010
+ }
2011
+ 100% {
2012
+ opacity: 0.3;
2013
+ transform: translateX(100%) rotateY(90deg);
2014
+ }
2015
+ }
2016
+ @keyframes rotateCubeRightIn {
2017
+ 0% {
2018
+ opacity: 0.3;
2019
+ transform: translateX(-100%) rotateY(-90deg);
2020
+ }
2021
+ 50% {
2022
+ animation-timing-function: ease-out;
2023
+ transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
2024
+ }
2025
+ }
2026
+ @keyframes rotateCubeTopOut {
2027
+ 50% {
2028
+ animation-timing-function: ease-out;
2029
+ transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
2030
+ }
2031
+ 100% {
2032
+ opacity: 0.3;
2033
+ transform: translateY(-100%) rotateX(90deg);
2034
+ }
2035
+ }
2036
+ @keyframes rotateCubeTopIn {
2037
+ 0% {
2038
+ opacity: 0.3;
2039
+ transform: translateY(100%) rotateX(-90deg);
2040
+ }
2041
+ 50% {
2042
+ animation-timing-function: ease-out;
2043
+ transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
2044
+ }
2045
+ }
2046
+ @keyframes rotateCubeBottomOut {
2047
+ 50% {
2048
+ animation-timing-function: ease-out;
2049
+ transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
2050
+ }
2051
+ 100% {
2052
+ opacity: 0.3;
2053
+ transform: translateY(100%) rotateX(-90deg);
2054
+ }
2055
+ }
2056
+ @keyframes rotateCubeBottomIn {
2057
+ 0% {
2058
+ opacity: 0.3;
2059
+ transform: translateY(-100%) rotateX(90deg);
2060
+ }
2061
+ 50% {
2062
+ animation-timing-function: ease-out;
2063
+ transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
2064
+ }
2065
+ }
2066
+
2067
+ @keyframes rotateCarouselLeftOut {
2068
+ to {
2069
+ opacity: 0.3;
2070
+ transform: translateX(-150%) scale(0.4) rotateY(-65deg);
2071
+ }
2072
+ }
2073
+ @keyframes rotateCarouselLeftIn {
2074
+ from {
2075
+ opacity: 0.3;
2076
+ transform: translateX(200%) scale(0.4) rotateY(65deg);
2077
+ }
2078
+ }
2079
+ @keyframes rotateCarouselRightOut {
2080
+ to {
2081
+ opacity: 0.3;
2082
+ transform: translateX(200%) scale(0.4) rotateY(65deg);
2083
+ }
2084
+ }
2085
+ @keyframes rotateCarouselRightIn {
2086
+ from {
2087
+ opacity: 0.3;
2088
+ transform: translateX(-200%) scale(0.4) rotateY(-65deg);
2089
+ }
2090
+ }
2091
+ @keyframes rotateCarouselTopOut {
2092
+ to {
2093
+ opacity: 0.3;
2094
+ transform: translateY(-200%) scale(0.4) rotateX(65deg);
2095
+ }
2096
+ }
2097
+ @keyframes rotateCarouselTopIn {
2098
+ from {
2099
+ opacity: 0.3;
2100
+ transform: translateY(200%) scale(0.4) rotateX(-65deg);
2101
+ }
2102
+ }
2103
+ @keyframes rotateCarouselBottomOut {
2104
+ to {
2105
+ opacity: 0.3;
2106
+ transform: translateY(200%) scale(0.4) rotateX(-65deg);
2107
+ }
2108
+ }
2109
+ @keyframes rotateCarouselBottomIn {
2110
+ from {
2111
+ opacity: 0.3;
2112
+ transform: translateY(-200%) scale(0.4) rotateX(65deg);
2113
+ }
2114
+ }
2115
+
2116
+ @keyframes rotateSidesOut {
2117
+ to {
2118
+ opacity: 0;
2119
+ transform: translateZ(-500px) rotateY(90deg);
2120
+ }
2121
+ }
2122
+ @keyframes rotateSidesIn {
2123
+ from {
2124
+ opacity: 0;
2125
+ transform: translateZ(-500px) rotateY(-90deg);
2126
+ }
2127
+ }
2128
+
2129
+ @keyframes rotateSlideOut {
2130
+ 25% {
2131
+ opacity: 0.5;
2132
+ transform: translateZ(-500px);
2133
+ }
2134
+ 75% {
2135
+ opacity: 0.5;
2136
+ transform: translateZ(-500px) translateX(-200%);
2137
+ }
2138
+ 100% {
2139
+ opacity: 0.5;
2140
+ transform: translateZ(-500px) translateX(-200%);
2141
+ }
2142
+ }
2143
+ @keyframes rotateSlideIn {
2144
+ 0%,
2145
+ 25% {
2146
+ opacity: 0.5;
2147
+ transform: translateZ(-500px) translateX(200%);
2148
+ }
2149
+ 75% {
2150
+ opacity: 0.5;
2151
+ transform: translateZ(-500px);
2152
+ }
2153
+ 100% {
2154
+ opacity: 1;
2155
+ transform: translateZ(0) translateX(0);
2156
+ }
2157
+ }
2158
+
2159
+ @keyframes superRainbow {
2160
+ 0% {
2161
+ background: red;
2162
+ }
2163
+ 20% {
2164
+ background: orange;
2165
+ }
2166
+ 40% {
2167
+ background: yellow;
2168
+ }
2169
+ 60% {
2170
+ background: green;
2171
+ }
2172
+ 80% {
2173
+ background: blue;
2174
+ }
2175
+ 100% {
2176
+ background: violet;
2177
+ }
2178
+ }
2179
+ .superRainbow {
2180
+ background-position: 0 0;
2181
+ background-size: 200% 100%;
2182
+ background-image: linear-gradient(
2183
+ 90deg,
2184
+ red,
2185
+ orange,
2186
+ yellow,
2187
+ green,
2188
+ blue,
2189
+ violet
2190
+ );
2191
+ }
2192
+ .superRainbow:hover {
2193
+ background-position: -100% 100%;
2194
+ }