End.

css内核是什么

  • Gecko内核 前缀 -moz- 火狐浏览器
  • Webkit内核 前缀为 -webkit- 也叫谷歌内核,谷歌浏览器、safari浏览器
  • Trident内核 前缀 -ms- 也叫IE内核,IE浏览器
  • Presto内核 前缀-o- opera浏览器


如:

animation:mymove 5s infinite;

animation-direction:alternate;

-webkit-animation:mymove 2s infinite; /*Safari and Chrome 浏览器2秒运行(谷歌内核),其他浏览器5秒运行*/

-webkit-animation-direction:alternate;


End.