Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fabric.Animations.Output.scss 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
  2. //
  3. // Office UI Fabric
  4. // --------------------------------------------------
  5. // Fabric Animations
  6. // Note that all animation classes should begin with the "ms-u" utility prefix.
  7. // The original class names are deprecated and will be removed in a future release.
  8. @import "Fabric.Animations";
  9. // slideRightIn40
  10. .ms-u-slideRightIn40 {
  11. @include ms-u-slideRightIn40;
  12. }
  13. @-webkit-keyframes slideRightIn40 {
  14. from { -webkit-transform:translate3d(-40px, 0px, 0px); }
  15. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  16. }
  17. @keyframes slideRightIn40 {
  18. from { transform:translate3d(-40px, 0px, 0px); }
  19. to { transform:translate3d(0px, 0px, 0px); }
  20. }
  21. // slideLeftIn40
  22. .ms-u-slideLeftIn40 {
  23. @include ms-u-slideLeftIn40;
  24. }
  25. @-webkit-keyframes slideLeftIn40 {
  26. from { -webkit-transform:translate3d(40px, 0px, 0px); }
  27. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  28. }
  29. @keyframes slideLeftIn40 {
  30. from { transform:translate3d(40px, 0px, 0px); }
  31. to { transform:translate3d(0px, 0px, 0px); }
  32. }
  33. // slideRightIn400
  34. .ms-u-slideRightIn400 {
  35. @include ms-u-slideRightIn400;
  36. }
  37. @-webkit-keyframes slideRightIn400 {
  38. from { -webkit-transform:translate3d(-400px, 0px, 0px); }
  39. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  40. }
  41. @keyframes slideRightIn400 {
  42. from { transform:translate3d(-400px, 0px, 0px); }
  43. to { transform:translate3d(0px, 0px, 0px); }
  44. }
  45. // slideLeftIn400
  46. .ms-u-slideLeftIn400 {
  47. @include ms-u-slideLeftIn400;
  48. }
  49. @-webkit-keyframes slideLeft400 {
  50. from { -webkit-transform:translate3d(400px, 0px, 0px); }
  51. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  52. }
  53. @keyframes slideLeft400 {
  54. from { transform:translate3d(400px, 0px, 0px); }
  55. to { transform:translate3d(0px, 0px, 0px); }
  56. }
  57. // slideUpIn20
  58. .ms-u-slideUpIn20 {
  59. @include ms-u-slideUpIn20;
  60. }
  61. @-webkit-keyframes slideUpIn20 {
  62. from { -webkit-transform:translate3d(0px, 20px, 0px); }
  63. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  64. }
  65. @keyframes slideUpIn20 {
  66. from { transform:translate3d(0px, 20px, 0px); }
  67. to { transform:translate3d(0px, 0px, 0px); }
  68. }
  69. // slideUpIn10
  70. .ms-u-slideUpIn10 {
  71. @include ms-u-slideUpIn10;
  72. }
  73. @-webkit-keyframes slideUpIn10 {
  74. from { -webkit-transform:translate3d(0px, 10px, 0px); }
  75. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  76. }
  77. @keyframes slideUpIn10 {
  78. from { transform:translate3d(0px, 10px, 0px); }
  79. to { transform:translate3d(0px, 0px, 0px); }
  80. }
  81. // slideDownIn20
  82. .ms-u-slideDownIn20 {
  83. @include ms-u-slideDownIn20;
  84. }
  85. @-webkit-keyframes slideDownIn20 {
  86. from { -webkit-transform:translate3d(0px, -20px, 0px); }
  87. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  88. }
  89. @keyframes slideDownIn20 {
  90. from { transform:translate3d(0px, -20px, 0px); }
  91. to { transform:translate3d(0px, 0px, 0px); }
  92. }
  93. // slideDownIn10
  94. .ms-u-slideDownIn10 {
  95. @include ms-u-slideDownIn10;
  96. }
  97. @-webkit-keyframes slideDownIn10 {
  98. from { -webkit-transform:translate3d(0px, -10px, 0px); }
  99. to { -webkit-transform:translate3d(0px, 0px, 0px); }
  100. }
  101. @keyframes slideDownIn10 {
  102. from { transform:translate3d(0px, -10px, 0px); }
  103. to { transform:translate3d(0px, 0px, 0px); }
  104. }
  105. // slideRightOut40
  106. .ms-u-slideRightOut40 {
  107. @include ms-u-slideRightOut40;
  108. }
  109. @-webkit-keyframes slideRightOut40 {
  110. from { -webkit-transform:translate3d(0px, 0px, 0px); }
  111. to { -webkit-transform:translate3d(40px, 0px, 0px); }
  112. }
  113. @keyframes slideRightOut40 {
  114. from { transform:translate3d(0px, 0px, 0px); }
  115. to { transform:translate3d(40px, 0px, 0px); }
  116. }
  117. // slideLeftOut40
  118. .ms-u-slideLeftOut40 {
  119. @include ms-u-slideLeftOut40;
  120. }
  121. @-webkit-keyframes slideLeftOut40 {
  122. from { -webkit-transform:translate3d(0, 0px, 0px); }
  123. to { -webkit-transform:translate3d(-40px, 0px, 0px); }
  124. }
  125. @keyframes slideLeftOut40 {
  126. from { transform:translate3d(0, 0px, 0px); }
  127. to { transform:translate3d(-40px, 0px, 0px); }
  128. }
  129. // slideRightOut400
  130. .ms-u-slideRightOut400 {
  131. @include ms-u-slideRightOut400;
  132. }
  133. @-webkit-keyframes slideRightOut400 {
  134. from { -webkit-transform:translate3d(0, 0px, 0px); }
  135. to { -webkit-transform:translate3d(400px, 0px, 0px); }
  136. }
  137. @keyframes slideRightOut400 {
  138. from { transform:translate3d(0, 0px, 0px); }
  139. to { transform:translate3d(400px, 0px, 0px); }
  140. }
  141. // slideLeftOut400
  142. .ms-u-slideLeftOut400 {
  143. @include ms-u-slideLeftOut400;
  144. }
  145. @-webkit-keyframes slideLeftOut400 {
  146. from { -webkit-transform:translate3d(0, 0px, 0px); }
  147. to { -webkit-transform:translate3d(-400px, 0px, 0px); }
  148. }
  149. @keyframes slideLeftOut400 {
  150. from { transform:translate3d(0, 0px, 0px); }
  151. to { transform:translate3d(-400px, 0px, 0px); }
  152. }
  153. // slideUpOut20
  154. .ms-u-slideUpOut20 {
  155. @include ms-u-slideUpOut20;
  156. }
  157. @-webkit-keyframes slideUpOut20 {
  158. from { -webkit-transform:translate3d(0px, 0, 0px); }
  159. to { -webkit-transform:translate3d(0px, -20px, 0px); }
  160. }
  161. @keyframes slideUpOut20 {
  162. from { transform:translate3d(0px, 0, 0px); }
  163. to { transform:translate3d(0px, -20px, 0px); }
  164. }
  165. // slideUpOut10
  166. .ms-u-slideUpOut10 {
  167. @include ms-u-slideUpOut10;
  168. }
  169. @-webkit-keyframes slideUpOut10 {
  170. from { -webkit-transform:translate3d(0px, 0, 0px); }
  171. to { -webkit-transform:translate3d(0px, -10px, 0px); }
  172. }
  173. @keyframes slideUpOut10 {
  174. from { transform:translate3d(0px, 0, 0px); }
  175. to { transform:translate3d(0px, -10px, 0px); }
  176. }
  177. // slideDownOut20
  178. .ms-u-slideDownOut20 {
  179. @include ms-u-slideDownOut20;
  180. }
  181. @-webkit-keyframes slideDownOut20 {
  182. from { -webkit-transform:translate3d(0px, 0, 0px); }
  183. to { -webkit-transform:translate3d(0px, 20px, 0px); }
  184. }
  185. @keyframes slideDownOut20 {
  186. from { transform:translate3d(0px, 0, 0px); }
  187. to { transform:translate3d(0px, 20px, 0px); }
  188. }
  189. // slideDownOut10
  190. .ms-u-slideDownOut10 {
  191. @include ms-u-slideDownOut10;
  192. }
  193. @-webkit-keyframes slideDownOut10 {
  194. from { -webkit-transform:translate3d(0px, 0, 0px); }
  195. to { -webkit-transform:translate3d(0px, 10px, 0px); }
  196. }
  197. @keyframes slideDownOut10 {
  198. from { transform:translate3d(0px, 0, 0px); }
  199. to { transform:translate3d(0px, 10px, 0px); }
  200. }
  201. // scaleUpIn100
  202. .ms-u-scaleUpIn100 {
  203. @include ms-u-scaleUpIn100;
  204. }
  205. @-webkit-keyframes scaleUp100 {
  206. from { -webkit-transform:scale3d(.98, .98, 1); }
  207. to { -webkit-transform:scale3d(1, 1, 1); }
  208. }
  209. @keyframes scaleUp100 {
  210. from { transform:scale3d(.98, .98, 1); }
  211. to { transform:scale3d(1, 1, 1); }
  212. }
  213. // scaleDownIn100
  214. .ms-u-scaleDownIn100 {
  215. @include ms-u-scaleDownIn100;
  216. }
  217. @-webkit-keyframes scaleDown100 {
  218. from { -webkit-transform:scale3d(1.03, 1.03, 1); }
  219. to { -webkit-transform:scale3d(1, 1, 1); }
  220. }
  221. @keyframes scaleDown100 {
  222. from { transform:scale3d(1.03, 1.03, 1); }
  223. to { transform:scale3d(1, 1, 1); }
  224. }
  225. // scaleUpOut103
  226. .ms-u-scaleUpOut103 {
  227. @include ms-u-scaleUpOut103;
  228. }
  229. @-webkit-keyframes scaleUp103 {
  230. from { -webkit-transform:scale3d(1, 1, 1); }
  231. to { -webkit-transform:scale3d(1.03, 1.03, 1); }
  232. }
  233. @keyframes scaleUp103 {
  234. from { transform:scale3d(1, 1, 1); }
  235. to { transform:scale3d(1.03, 1.03, 1); }
  236. }
  237. // scaleDownOut98
  238. .ms-u-scaleDownOut98 {
  239. @include ms-u-scaleDownOut98;
  240. }
  241. @-webkit-keyframes scaleDown98 {
  242. from { -webkit-transform:scale3d(1, 1, 1); }
  243. to { -webkit-transform:scale3d(0.98, 0.98, 1); }
  244. }
  245. @keyframes scaleDown98 {
  246. from { transform:scale3d(1, 1, 1); }
  247. to { transform:scale3d(0.98, 0.98, 1); }
  248. }
  249. // fadeIn
  250. .ms-u-fadeIn400 {
  251. @include ms-u-fadeIn400;
  252. }
  253. .ms-u-fadeIn100 {
  254. @include ms-u-fadeIn100;
  255. }
  256. .ms-u-fadeIn200 {
  257. @include ms-u-fadeIn200;
  258. }
  259. .ms-u-fadeIn500 {
  260. @include ms-u-fadeIn500;
  261. }
  262. @-webkit-keyframes fadeIn {
  263. from { opacity: 0; -webkit-animation-timing-function: $ms-ease2; }
  264. to { opacity: 1; }
  265. }
  266. @keyframes fadeIn {
  267. from { opacity: 0; animation-timing-function: $ms-ease2; }
  268. to { opacity: 1; }
  269. }
  270. // fadeOut
  271. .ms-u-fadeOut400 {
  272. @include ms-u-fadeOut400;
  273. }
  274. .ms-u-fadeOut100 {
  275. @include ms-u-fadeOut100;
  276. }
  277. .ms-u-fadeOut200 {
  278. @include ms-u-fadeOut200;
  279. }
  280. .ms-u-fadeOut500 {
  281. @include ms-u-fadeOut500;
  282. }
  283. @-webkit-keyframes fadeOut {
  284. from { opacity: 1; -webkit-animation-timing-function: $ms-ease2; }
  285. to { opacity: 0; }
  286. }
  287. @keyframes fadeOut {
  288. from { opacity: 1; animation-timing-function: $ms-ease2; }
  289. to { opacity: 0; }
  290. }
  291. // rotate90deg
  292. .ms-u-rotate90deg {
  293. @include ms-u-rotate90deg;
  294. }
  295. @-webkit-keyframes rotate90 {
  296. from { -webkit-transform:rotateZ(0deg); }
  297. to { -webkit-transform:rotateZ(90deg); }
  298. }
  299. @keyframes rotate90 {
  300. from { transform:rotateZ(0deg); }
  301. to { transform:rotateZ(90deg); }
  302. }
  303. // rotateN90deg
  304. .ms-u-rotateN90deg {
  305. @include ms-u-rotateN90deg;
  306. }
  307. @-webkit-keyframes rotateN90 {
  308. from { -webkit-transform:rotateZ(90deg); }
  309. to { -webkit-transform:rotateZ(0deg); }
  310. }
  311. @keyframes rotateN90 {
  312. from { transform:rotateZ(90deg); }
  313. to { transform:rotateZ(0deg); }
  314. }
  315. // expandCollapse400
  316. .ms-u-expandCollapse400 {
  317. @include ms-u-expandCollapse400;
  318. }
  319. // expandCollapse200
  320. .ms-u-expandCollapse200 {
  321. @include ms-u-expandCollapse200;
  322. }
  323. // expandCollapse100
  324. .ms-u-expandCollapse100 {
  325. @include ms-u-expandCollapse100;
  326. }
  327. // delay100
  328. .ms-u-delay100 {
  329. @include ms-u-delay100;
  330. }
  331. // delay200
  332. .ms-u-delay200 {
  333. @include ms-u-delay200;
  334. }