gpt4 book ai didi

css - 绝对定位导致水平滚动

转载 作者:行者123 更新时间:2023-12-04 18:15:05 25 4
gpt4 key购买 nike

我有一个云,它使用 CSS3 动画从屏幕内部移动到屏幕外。当云离开屏幕时,屏幕水平滚动,并不理想。我可以用 CSS 隐藏滚动条,但我想阻止滚动。

#c-2 {
background:url(clouds.png) no-repeat;
width:161px;
height:94px;
position:absolute;
top:40%;
right:0%;
animation:CloudB 20s 1s infinite alternate ease-in-out;
-moz-animation:CloudB 20s 1s infinite alternate ease-in-out;
-webkit-animation:CloudB 20s 1s infinite alternate ease-in-out;
-o-animation:CloudB 20s 1s infinite alternate ease-in-out;
}

@keyframes CloudB {
0% { right:0%; top:40%; }
100% { right:-10%; top:40%; }
}

@-moz-keyframes CloudB {
0% { right:0%; top:40%; }
100% { right:-10%; top:40%; }
}

@-webkit-keyframes CloudB {
0% { right:0%; top:40%; }
100% { right:-10%; top:40%; }
}

@-o-keyframes CloudB {
0% { right:0%; top:40%; }
100% { right:-10%; top:40%; }
}

http://energycenter.herokuapp.com/

最佳答案

试试这个 - http://jsfiddle.net/m3af2/

body {
background-color: #99CCE8;
margin: 0;
line-height: 1;
text-rendering: optimizeLegibility;
overflow-x: hidden;
position: relative;
}

关于css - 绝对定位导致水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11904561/

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