如何通过js修改keyframes里面的值?
@-webkit-keyframesxinxi{from{height:0;}to{height:335px;}}我想通过js来修改“xinxi”里面to{height:...
@-webkit-keyframes xinxi{
from{ height:0;}
to{ height:335px;}
}
我想通过js来修改“xinxi”里面to{height:?};
网上有些资料但是没有搞明白,需要帮忙,多谢!!! 展开
from{ height:0;}
to{ height:335px;}
}
我想通过js来修改“xinxi”里面to{height:?};
网上有些资料但是没有搞明白,需要帮忙,多谢!!! 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
展开全部
<!DOCTYPE html>
<html>
<style>
div.a {
animation: myfirst 1s;
-webkit-animation: myfirst 1s;
}
</style>
<style id=dynamic></style>
<body>
<div id='a'>
123
</div>
<script>
var colors = ['red','yellow','blue','green']
window.setTimeout(function (){
var color = colors.shift()
console.log(color)
if (!color) return
var style = document.getElementById("dynamic")
style.innerHTML = '@-webkit-keyframes myfirst{50% {background: '+color+';} }\n'
+ '@keyframes myfirst {50% {background: '+color+';}}'
var a = document.getElementById('a')
a.className = 'a'
window.setTimeout(function(){
a.className = ''
},1000)
window.setTimeout(arguments.callee,1500)
},1000)
</script>
</body>
</html>
<html>
<style>
div.a {
animation: myfirst 1s;
-webkit-animation: myfirst 1s;
}
</style>
<style id=dynamic></style>
<body>
<div id='a'>
123
</div>
<script>
var colors = ['red','yellow','blue','green']
window.setTimeout(function (){
var color = colors.shift()
console.log(color)
if (!color) return
var style = document.getElementById("dynamic")
style.innerHTML = '@-webkit-keyframes myfirst{50% {background: '+color+';} }\n'
+ '@keyframes myfirst {50% {background: '+color+';}}'
var a = document.getElementById('a')
a.className = 'a'
window.setTimeout(function(){
a.className = ''
},1000)
window.setTimeout(arguments.callee,1500)
},1000)
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
js可以直接更改css里的内容嘛?你要做动画的话不如直接用js做把
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询