css-transitions.json 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  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. "79":"y",
  69. "80":"y",
  70. "81":"y",
  71. "83":"y",
  72. "84":"y",
  73. "85":"y",
  74. "86":"y",
  75. "87":"y",
  76. "88":"y",
  77. "89":"y",
  78. "90":"y",
  79. "91":"y",
  80. "92":"y",
  81. "93":"y",
  82. "94":"y",
  83. "95":"y",
  84. "96":"y",
  85. "97":"y",
  86. "98":"y",
  87. "99":"y"
  88. },
  89. "firefox":{
  90. "2":"n",
  91. "3":"n",
  92. "3.5":"n",
  93. "3.6":"n",
  94. "4":"a x #1",
  95. "5":"y x",
  96. "6":"y x",
  97. "7":"y x",
  98. "8":"y x",
  99. "9":"y x",
  100. "10":"y x",
  101. "11":"y x",
  102. "12":"y x",
  103. "13":"y x",
  104. "14":"y x",
  105. "15":"y x",
  106. "16":"y",
  107. "17":"y",
  108. "18":"y",
  109. "19":"y",
  110. "20":"y",
  111. "21":"y",
  112. "22":"y",
  113. "23":"y",
  114. "24":"y",
  115. "25":"y",
  116. "26":"y",
  117. "27":"y",
  118. "28":"y",
  119. "29":"y",
  120. "30":"y",
  121. "31":"y",
  122. "32":"y",
  123. "33":"y",
  124. "34":"y",
  125. "35":"y",
  126. "36":"y",
  127. "37":"y",
  128. "38":"y",
  129. "39":"y",
  130. "40":"y",
  131. "41":"y",
  132. "42":"y",
  133. "43":"y",
  134. "44":"y",
  135. "45":"y",
  136. "46":"y",
  137. "47":"y",
  138. "48":"y",
  139. "49":"y",
  140. "50":"y",
  141. "51":"y",
  142. "52":"y",
  143. "53":"y",
  144. "54":"y",
  145. "55":"y",
  146. "56":"y",
  147. "57":"y",
  148. "58":"y",
  149. "59":"y",
  150. "60":"y",
  151. "61":"y",
  152. "62":"y",
  153. "63":"y",
  154. "64":"y",
  155. "65":"y",
  156. "66":"y",
  157. "67":"y",
  158. "68":"y",
  159. "69":"y",
  160. "70":"y",
  161. "71":"y",
  162. "72":"y",
  163. "73":"y",
  164. "74":"y",
  165. "75":"y",
  166. "76":"y",
  167. "77":"y",
  168. "78":"y",
  169. "79":"y",
  170. "80":"y",
  171. "81":"y",
  172. "82":"y",
  173. "83":"y",
  174. "84":"y",
  175. "85":"y",
  176. "86":"y",
  177. "87":"y",
  178. "88":"y",
  179. "89":"y",
  180. "90":"y",
  181. "91":"y",
  182. "92":"y",
  183. "93":"y",
  184. "94":"y",
  185. "95":"y",
  186. "96":"y",
  187. "97":"y",
  188. "98":"y",
  189. "99":"y",
  190. "100":"y"
  191. },
  192. "chrome":{
  193. "4":"y x",
  194. "5":"y x",
  195. "6":"y x",
  196. "7":"y x",
  197. "8":"y x",
  198. "9":"y x",
  199. "10":"y x",
  200. "11":"y x",
  201. "12":"y x",
  202. "13":"y x",
  203. "14":"y x",
  204. "15":"y x",
  205. "16":"y x",
  206. "17":"y x",
  207. "18":"y x",
  208. "19":"y x",
  209. "20":"y x",
  210. "21":"y x",
  211. "22":"y x",
  212. "23":"y x",
  213. "24":"y x",
  214. "25":"y x",
  215. "26":"y",
  216. "27":"y",
  217. "28":"y",
  218. "29":"y",
  219. "30":"y",
  220. "31":"y",
  221. "32":"y",
  222. "33":"y",
  223. "34":"y",
  224. "35":"y",
  225. "36":"y",
  226. "37":"y",
  227. "38":"y",
  228. "39":"y",
  229. "40":"y",
  230. "41":"y",
  231. "42":"y",
  232. "43":"y",
  233. "44":"y",
  234. "45":"y",
  235. "46":"y",
  236. "47":"y",
  237. "48":"y",
  238. "49":"y",
  239. "50":"y",
  240. "51":"y",
  241. "52":"y",
  242. "53":"y",
  243. "54":"y",
  244. "55":"y",
  245. "56":"y",
  246. "57":"y",
  247. "58":"y",
  248. "59":"y",
  249. "60":"y",
  250. "61":"y",
  251. "62":"y",
  252. "63":"y",
  253. "64":"y",
  254. "65":"y",
  255. "66":"y",
  256. "67":"y",
  257. "68":"y",
  258. "69":"y",
  259. "70":"y",
  260. "71":"y",
  261. "72":"y",
  262. "73":"y",
  263. "74":"y",
  264. "75":"y",
  265. "76":"y",
  266. "77":"y",
  267. "78":"y",
  268. "79":"y",
  269. "80":"y",
  270. "81":"y",
  271. "83":"y",
  272. "84":"y",
  273. "85":"y",
  274. "86":"y",
  275. "87":"y",
  276. "88":"y",
  277. "89":"y",
  278. "90":"y",
  279. "91":"y",
  280. "92":"y",
  281. "93":"y",
  282. "94":"y",
  283. "95":"y",
  284. "96":"y",
  285. "97":"y",
  286. "98":"y",
  287. "99":"y",
  288. "100":"y",
  289. "101":"y",
  290. "102":"y",
  291. "103":"y"
  292. },
  293. "safari":{
  294. "3.1":"a x #1",
  295. "3.2":"a x #1",
  296. "4":"a x #1",
  297. "5":"a x #1",
  298. "5.1":"y x",
  299. "6":"y x",
  300. "6.1":"y",
  301. "7":"y",
  302. "7.1":"y",
  303. "8":"y",
  304. "9":"y",
  305. "9.1":"y",
  306. "10":"y",
  307. "10.1":"y",
  308. "11":"y",
  309. "11.1":"y",
  310. "12":"y",
  311. "12.1":"y",
  312. "13":"y",
  313. "13.1":"y",
  314. "14":"y",
  315. "14.1":"y",
  316. "15":"y",
  317. "15.1":"y",
  318. "15.2-15.3":"y",
  319. "15.4":"y",
  320. "TP":"y"
  321. },
  322. "opera":{
  323. "9":"n",
  324. "9.5-9.6":"n",
  325. "10.0-10.1":"n",
  326. "10.5":"a x #1",
  327. "10.6":"a x #1",
  328. "11":"a x #1",
  329. "11.1":"a x #1",
  330. "11.5":"a x #1",
  331. "11.6":"a x #1",
  332. "12":"y x",
  333. "12.1":"y",
  334. "15":"y",
  335. "16":"y",
  336. "17":"y",
  337. "18":"y",
  338. "19":"y",
  339. "20":"y",
  340. "21":"y",
  341. "22":"y",
  342. "23":"y",
  343. "24":"y",
  344. "25":"y",
  345. "26":"y",
  346. "27":"y",
  347. "28":"y",
  348. "29":"y",
  349. "30":"y",
  350. "31":"y",
  351. "32":"y",
  352. "33":"y",
  353. "34":"y",
  354. "35":"y",
  355. "36":"y",
  356. "37":"y",
  357. "38":"y",
  358. "39":"y",
  359. "40":"y",
  360. "41":"y",
  361. "42":"y",
  362. "43":"y",
  363. "44":"y",
  364. "45":"y",
  365. "46":"y",
  366. "47":"y",
  367. "48":"y",
  368. "49":"y",
  369. "50":"y",
  370. "51":"y",
  371. "52":"y",
  372. "53":"y",
  373. "54":"y",
  374. "55":"y",
  375. "56":"y",
  376. "57":"y",
  377. "58":"y",
  378. "60":"y",
  379. "62":"y",
  380. "63":"y",
  381. "64":"y",
  382. "65":"y",
  383. "66":"y",
  384. "67":"y",
  385. "68":"y",
  386. "69":"y",
  387. "70":"y",
  388. "71":"y",
  389. "72":"y",
  390. "73":"y",
  391. "74":"y",
  392. "75":"y",
  393. "76":"y",
  394. "77":"y",
  395. "78":"y",
  396. "79":"y",
  397. "80":"y",
  398. "81":"y",
  399. "82":"y",
  400. "83":"y"
  401. },
  402. "ios_saf":{
  403. "3.2":"a x #1",
  404. "4.0-4.1":"a x #1",
  405. "4.2-4.3":"a x #1",
  406. "5.0-5.1":"a x #1",
  407. "6.0-6.1":"y x",
  408. "7.0-7.1":"y",
  409. "8":"y",
  410. "8.1-8.4":"y",
  411. "9.0-9.2":"y",
  412. "9.3":"y",
  413. "10.0-10.2":"y",
  414. "10.3":"y",
  415. "11.0-11.2":"y",
  416. "11.3-11.4":"y",
  417. "12.0-12.1":"y",
  418. "12.2-12.5":"y",
  419. "13.0-13.1":"y",
  420. "13.2":"y",
  421. "13.3":"y",
  422. "13.4-13.7":"y",
  423. "14.0-14.4":"y",
  424. "14.5-14.8":"y",
  425. "15.0-15.1":"y",
  426. "15.2-15.3":"y",
  427. "15.4":"y"
  428. },
  429. "op_mini":{
  430. "all":"n"
  431. },
  432. "android":{
  433. "2.1":"y x",
  434. "2.2":"y x",
  435. "2.3":"y x",
  436. "3":"y x",
  437. "4":"y x",
  438. "4.1":"y x",
  439. "4.2-4.3":"y x",
  440. "4.4":"y",
  441. "4.4.3-4.4.4":"y",
  442. "99":"y"
  443. },
  444. "bb":{
  445. "7":"y x",
  446. "10":"y"
  447. },
  448. "op_mob":{
  449. "10":"a x #1",
  450. "11":"a x #1",
  451. "11.1":"a x #1",
  452. "11.5":"a x #1",
  453. "12":"y x",
  454. "12.1":"y",
  455. "64":"y"
  456. },
  457. "and_chr":{
  458. "100":"y"
  459. },
  460. "and_ff":{
  461. "98":"y"
  462. },
  463. "ie_mob":{
  464. "10":"y",
  465. "11":"y"
  466. },
  467. "and_uc":{
  468. "12.12":"y"
  469. },
  470. "samsung":{
  471. "4":"y",
  472. "5.0-5.4":"y",
  473. "6.2-6.4":"y",
  474. "7.2-7.4":"y",
  475. "8.2":"y",
  476. "9.2":"y",
  477. "10.1":"y",
  478. "11.1-11.2":"y",
  479. "12.0":"y",
  480. "13.0":"y",
  481. "14.0":"y",
  482. "15.0":"y",
  483. "16.0":"y"
  484. },
  485. "and_qq":{
  486. "10.4":"y"
  487. },
  488. "baidu":{
  489. "7.12":"y"
  490. },
  491. "kaios":{
  492. "2.5":"y"
  493. }
  494. },
  495. "notes":"Support listed is for `transition` properties as well as the `transitionend` event.",
  496. "notes_by_num":{
  497. "1":"Does not support the `steps()`, `step-start` & `step-end` timing functions"
  498. },
  499. "usage_perc_y":96.67,
  500. "usage_perc_a":0.09,
  501. "ucprefix":false,
  502. "parent":"",
  503. "keywords":"css transition,transitionend,transition-property,transition-duration,transition-timing-function,transition-delay,steps,step-start,step-end,cubic-bezier",
  504. "ie_id":"",
  505. "chrome_id":"",
  506. "firefox_id":"",
  507. "webkit_id":"",
  508. "shown":true
  509. }