gpt4 book ai didi

css关键帧动画未初始化

转载 作者:太空宇宙 更新时间:2023-11-04 15:00:21 26 4
gpt4 key购买 nike

我有一个 css @keyframe 动画,我正在尝试启动但它永远不会启动...我做错了什么?

http://jsfiddle.net/sadmicrowave/VKzXp/

@-webkit-keyframes slideNotificationsHide {
0%{ width:70%; }
100%{ width:94%; left:0; right:0; }
}

#left-container{
position:aboslute;
top:0px; right:30%;
width:70%; height:100%;
border:1px solid green;
background:#eee;
}

#left-container:target{
background:green;
-webkit-animation: slideNotificationsHide .6s ease-in-out linear forwards;
-moz-animation: slideNotificationsHide .6s ease-in-out linear forwards;
animation: slideNotificationsHide .6s ease-in-out linear forwards;
}


<div id='left-container'></div>
<a href="#left-container">click to start animation</a>

注意 #left-container:target 声明中的 background:green; 属性。那部分确实有效,所以我知道 :target 有效;只是不是动画。

最佳答案

您同时定义了 animation-timing-function: linear;animation-timing-function: ease-in-out; 并且您在#left-container{ position:aboslute;}

我已经修复了拼写错误并删除了 animation-timing-function: linear; - 这是您想要的吗? Demo

希望这对您有所帮助。

关于css关键帧动画未初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16487731/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com