<string>数据类型动画命名测试实例页面
展示
//zxx: 如果支持字符串命名会有动画效果,如果不支持则没有反应
代码
-
HTML:
<img src="1.jpg">
-
CSS:
img { animation: 'hello world' 2s; } @keyframes 'hello world' { 0% { opacity: 0; } 100% { opacity: 1; } }
//zxx: 如果支持字符串命名会有动画效果,如果不支持则没有反应
<img src="1.jpg">
img { animation: 'hello world' 2s; } @keyframes 'hello world' { 0% { opacity: 0; } 100% { opacity: 1; } }