gpt4 book ai didi

html - 为什么 firefox 向我展示幻灯片,而 chrome 却没有?

转载 作者:行者123 更新时间:2023-11-28 17:20:07 24 4
gpt4 key购买 nike

知道为什么此幻灯片在 Firefox 中有效,但在 Chrome 中无效吗?(尚未在 IE 中测试过)希望有人能提供帮助!

CSS:

#slideshow {
margin:50px auto;
width:60em;
height:18em;
overflow:hidden;
border:0.4em solid;
border-color: black;
position:relative;
}
.photo{
position:absolute;
animation:round 16s infinite;
opacity:0;
}
@keyframes round{
25%{opacity:1;}
40%{opacity:0;}
}

img:nth-child(4){animation-delay:0s;}
img:nth-child(3){animation-delay:4s;}
img:nth-child(2){animation-delay:8s;}
img:nth-child(1){animation-delay:12s;}

HTML:

<div id="slideshow">
<img class='photo' src="Images/Red.jpeg" alt="">
<img class='photo' src="Images/rose.jpeg" alt="">
<img class='photo' src="Images/White.jpeg" alt="">
<img class='photo' src="Images/rose.jpeg" alt="">
</div>

最佳答案

Chrome 在这个特定的方面有点落后 - 不知道为什么,真的。

caniuse 所示, Chrome 需要所有动画相关属性的 -webkit- 前缀,以及 @-webkit-keyframes

添加这些,应该一切正常。不得不为 Chrome 复制所有内容有点烦人,但是哦,好吧......

关于html - 为什么 firefox 向我展示幻灯片,而 chrome 却没有?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27987913/

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