【发布时间】:2020-11-09 14:19:38
【问题描述】:
文本动画在 iOS 浏览器上不起作用。我已经为文本动画编写了这个简单的代码,它可以在 android 浏览器上运行,但不能在 iOS 上运行。
!DOCTYPE html>
<html>
<head>
<style>
h2{
font-size: 45px;
}
span:before {
content:'';
animation-name: example;
animation-duration: 8s;
animation-iteration-count: infinite;
}
@keyframes example {
0%{
content:'mirror';
}
40%{
content:'catalyst';
}
80%{
content:'disruptor';
}
100%{
content:'partner';
}
}
</style>
</head>
<body>
<div><h2> I am your <span></span>.</div>
</body>
</html>
【问题讨论】:
标签: javascript html ios