css-transitions.json 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. {
  2. "title":"CSS3 Transitions",
  3. "description":"Simple method of animating certain properties of an element, with ability to define property, duration, delay and timing function. ",
  4. "spec":"https://www.w3.org/TR/css3-transitions/",
  5. "status":"wd",
  6. "links":[
  7. {
  8. "url":"http://www.webdesignerdepot.com/2010/01/css-transitions-101/",
  9. "title":"Article on usage"
  10. },
  11. {
  12. "url":"http://www.the-art-of-web.com/css/timing-function/",
  13. "title":"Examples on timing functions"
  14. },
  15. {
  16. "url":"http://www.opera.com/docs/specs/presto2.12/css/transitions/",
  17. "title":"Animation of property types support in Opera"
  18. },
  19. {
  20. "url":"https://www.webplatform.org/docs/css/properties/transition",
  21. "title":"WebPlatform Docs"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"Not supported on any pseudo-elements besides ::before and ::after for Firefox, Chrome 26+, Opera 16+ and IE10+."
  27. },
  28. {
  29. "description":"Transitionable properties with calc() derived values are not supported below and including IE11 (http://connect.microsoft.com/IE/feedback/details/762719/css3-calc-bug-inside-transition-or-transform)"
  30. },
  31. {
  32. "description":"Internet Explorer does not support transitions of the 'background-size' property."
  33. },
  34. {
  35. "description":"IE11 [does not support](https://connect.microsoft.com/IE/feedbackdetail/view/920928/ie-11-css-transition-property-not-working-for-svg-elements) CSS transitions on the SVG `fill` property."
  36. },
  37. {
  38. "description":"In Chrome (up to 43.0), for transition-delay property, either explicitly specified or written within transition property, the unit cannot be ommitted even if the value is 0."
  39. },
  40. {
  41. "description":"IE10 & IE11 are reported to not support transitioning the `column-count` property."
  42. },
  43. {
  44. "description":"Safari 11 [does not support](https://bugs.webkit.org/show_bug.cgi?id=180435) CSS transitions on the `flex-basis` property."
  45. }
  46. ],
  47. "categories":[
  48. "CSS3"
  49. ],
  50. "stats":{
  51. "ie":{
  52. "5.5":"n",
  53. "6":"n",
  54. "7":"n",
  55. "8":"n",
  56. "9":"n",
  57. "10":"y",
  58. "11":"y"
  59. },
  60. "edge":{
  61. "12":"y",
  62. "13":"y",
  63. "14":"y",
  64. "15":"y",
  65. "16":"y",
  66. "17":"y",
  67. "18":"y"
  68. },
  69. "firefox":{
  70. "2":"n",
  71. "3":"n",
  72. "3.5":"n",
  73. "3.6":"n",
  74. "4":"a x #1",
  75. "5":"y x",
  76. "6":"y x",
  77. "7":"y x",
  78. "8":"y x",
  79. "9":"y x",
  80. "10":"y x",
  81. "11":"y x",
  82. "12":"y x",
  83. "13":"y x",
  84. "14":"y x",
  85. "15":"y x",
  86. "16":"y",
  87. "17":"y",
  88. "18":"y",
  89. "19":"y",
  90. "20":"y",
  91. "21":"y",
  92. "22":"y",
  93. "23":"y",
  94. "24":"y",
  95. "25":"y",
  96. "26":"y",
  97. "27":"y",
  98. "28":"y",
  99. "29":"y",
  100. "30":"y",
  101. "31":"y",
  102. "32":"y",
  103. "33":"y",
  104. "34":"y",
  105. "35":"y",
  106. "36":"y",
  107. "37":"y",
  108. "38":"y",
  109. "39":"y",
  110. "40":"y",
  111. "41":"y",
  112. "42":"y",
  113. "43":"y",
  114. "44":"y",
  115. "45":"y",
  116. "46":"y",
  117. "47":"y",
  118. "48":"y",
  119. "49":"y",
  120. "50":"y",
  121. "51":"y",
  122. "52":"y",
  123. "53":"y",
  124. "54":"y",
  125. "55":"y",
  126. "56":"y",
  127. "57":"y",
  128. "58":"y",
  129. "59":"y",
  130. "60":"y",
  131. "61":"y",
  132. "62":"y",
  133. "63":"y",
  134. "64":"y",
  135. "65":"y",
  136. "66":"y"
  137. },
  138. "chrome":{
  139. "4":"y x",
  140. "5":"y x",
  141. "6":"y x",
  142. "7":"y x",
  143. "8":"y x",
  144. "9":"y x",
  145. "10":"y x",
  146. "11":"y x",
  147. "12":"y x",
  148. "13":"y x",
  149. "14":"y x",
  150. "15":"y x",
  151. "16":"y x",
  152. "17":"y x",
  153. "18":"y x",
  154. "19":"y x",
  155. "20":"y x",
  156. "21":"y x",
  157. "22":"y x",
  158. "23":"y x",
  159. "24":"y x",
  160. "25":"y x",
  161. "26":"y",
  162. "27":"y",
  163. "28":"y",
  164. "29":"y",
  165. "30":"y",
  166. "31":"y",
  167. "32":"y",
  168. "33":"y",
  169. "34":"y",
  170. "35":"y",
  171. "36":"y",
  172. "37":"y",
  173. "38":"y",
  174. "39":"y",
  175. "40":"y",
  176. "41":"y",
  177. "42":"y",
  178. "43":"y",
  179. "44":"y",
  180. "45":"y",
  181. "46":"y",
  182. "47":"y",
  183. "48":"y",
  184. "49":"y",
  185. "50":"y",
  186. "51":"y",
  187. "52":"y",
  188. "53":"y",
  189. "54":"y",
  190. "55":"y",
  191. "56":"y",
  192. "57":"y",
  193. "58":"y",
  194. "59":"y",
  195. "60":"y",
  196. "61":"y",
  197. "62":"y",
  198. "63":"y",
  199. "64":"y",
  200. "65":"y",
  201. "66":"y",
  202. "67":"y",
  203. "68":"y",
  204. "69":"y",
  205. "70":"y",
  206. "71":"y",
  207. "72":"y",
  208. "73":"y",
  209. "74":"y"
  210. },
  211. "safari":{
  212. "3.1":"a x #1",
  213. "3.2":"a x #1",
  214. "4":"a x #1",
  215. "5":"a x #1",
  216. "5.1":"y x",
  217. "6":"y x",
  218. "6.1":"y",
  219. "7":"y",
  220. "7.1":"y",
  221. "8":"y",
  222. "9":"y",
  223. "9.1":"y",
  224. "10":"y",
  225. "10.1":"y",
  226. "11":"y",
  227. "11.1":"y",
  228. "12":"y",
  229. "TP":"y"
  230. },
  231. "opera":{
  232. "9":"n",
  233. "9.5-9.6":"n",
  234. "10.0-10.1":"n",
  235. "10.5":"a x #1",
  236. "10.6":"a x #1",
  237. "11":"a x #1",
  238. "11.1":"a x #1",
  239. "11.5":"a x #1",
  240. "11.6":"a x #1",
  241. "12":"y x",
  242. "12.1":"y",
  243. "15":"y",
  244. "16":"y",
  245. "17":"y",
  246. "18":"y",
  247. "19":"y",
  248. "20":"y",
  249. "21":"y",
  250. "22":"y",
  251. "23":"y",
  252. "24":"y",
  253. "25":"y",
  254. "26":"y",
  255. "27":"y",
  256. "28":"y",
  257. "29":"y",
  258. "30":"y",
  259. "31":"y",
  260. "32":"y",
  261. "33":"y",
  262. "34":"y",
  263. "35":"y",
  264. "36":"y",
  265. "37":"y",
  266. "38":"y",
  267. "39":"y",
  268. "40":"y",
  269. "41":"y",
  270. "42":"y",
  271. "43":"y",
  272. "44":"y",
  273. "45":"y",
  274. "46":"y",
  275. "47":"y",
  276. "48":"y",
  277. "49":"y",
  278. "50":"y",
  279. "51":"y",
  280. "52":"y",
  281. "53":"y",
  282. "54":"y",
  283. "55":"y",
  284. "56":"y",
  285. "57":"y"
  286. },
  287. "ios_saf":{
  288. "3.2":"a x #1",
  289. "4.0-4.1":"a x #1",
  290. "4.2-4.3":"a x #1",
  291. "5.0-5.1":"a x #1",
  292. "6.0-6.1":"y x",
  293. "7.0-7.1":"y",
  294. "8":"y",
  295. "8.1-8.4":"y",
  296. "9.0-9.2":"y",
  297. "9.3":"y",
  298. "10.0-10.2":"y",
  299. "10.3":"y",
  300. "11.0-11.2":"y",
  301. "11.3-11.4":"y",
  302. "12.0-12.1":"y"
  303. },
  304. "op_mini":{
  305. "all":"n"
  306. },
  307. "android":{
  308. "2.1":"y x",
  309. "2.2":"y x",
  310. "2.3":"y x",
  311. "3":"y x",
  312. "4":"y x",
  313. "4.1":"y x",
  314. "4.2-4.3":"y x",
  315. "4.4":"y",
  316. "4.4.3-4.4.4":"y",
  317. "67":"y"
  318. },
  319. "bb":{
  320. "7":"y x",
  321. "10":"y"
  322. },
  323. "op_mob":{
  324. "10":"a x #1",
  325. "11":"a x #1",
  326. "11.1":"a x #1",
  327. "11.5":"a x #1",
  328. "12":"y x",
  329. "12.1":"y",
  330. "46":"y"
  331. },
  332. "and_chr":{
  333. "70":"y"
  334. },
  335. "and_ff":{
  336. "63":"y"
  337. },
  338. "ie_mob":{
  339. "10":"y",
  340. "11":"y"
  341. },
  342. "and_uc":{
  343. "11.8":"y"
  344. },
  345. "samsung":{
  346. "4":"y",
  347. "5":"y",
  348. "6.2":"y",
  349. "7.2":"y"
  350. },
  351. "and_qq":{
  352. "1.2":"y"
  353. },
  354. "baidu":{
  355. "7.12":"y"
  356. }
  357. },
  358. "notes":"Support listed is for `transition` properties as well as the `transitionend` event.",
  359. "notes_by_num":{
  360. "1":"Does not support the `steps()`, `step-start` & `step-end` timing functions"
  361. },
  362. "usage_perc_y":93.37,
  363. "usage_perc_a":0.1,
  364. "ucprefix":false,
  365. "parent":"",
  366. "keywords":"css transition,transitionend,transition-property,transition-duration,transition-timing-function,transition-delay,steps,step-start,step-end,cubic-bezier",
  367. "ie_id":"",
  368. "chrome_id":"",
  369. "firefox_id":"",
  370. "webkit_id":"",
  371. "shown":true
  372. }