gpt4 book ai didi

Css 动画 : how to make a scrolling text to be repeated

转载 作者:太空宇宙 更新时间:2023-11-04 08:29:02 24 4
gpt4 key购买 nike

我找到了一个 css 代码来使我的网页上的文本从右向左滑动,我发现我可以在这一行中调整幻灯片的速度 "animation: scroll-left 20s linear infinite;”,我可以在其中更改“秒”参数。

但我希望重复文本,即像这样:

Please read this page      Please read this page      Please read this      Please read     Pl

代替:

                                   Please read this page

必须等待文本完成该行才能再次返回。

这是我现在的代码:

 <!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>

<style>

.scroll-left {
height: 50px;
overflow: hidden;
position: relative;
}
.scroll-left p {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
line-height: 50px;
text-align: center;
/* Starting position */
-moz-transform:translateX(100%);
-webkit-transform:translateX(100%);
transform:translateX(100%);
/* Apply animation to this element */
-moz-animation: scroll-left 20s linear infinite;
-webkit-animation: scroll-left 20s linear infinite;
animation: scroll-left 20s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0% { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
0% { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
0% {
-moz-transform: translateX(100%); /* Browser bug fix */
-webkit-transform: translateX(100%); /* Browser bug fix */
transform: translateX(100%);
}
100% {
-moz-transform: translateX(-100%); /* Browser bug fix */
-webkit-transform: translateX(-100%); /* Browser bug fix */
transform: translateX(-100%);
}
}
</style>




<body>

<div class="container">
<br><br><br><br><br><br><br><br><br><br>
<div class="row">

<div class="col-sm-offset-3 col-sm-6">

<div class="scroll-left">
<p>Please read this page </p>
</div>

</div>

</div>

</div>

</body>
</html>

我已经尝试了这个 css 代码的所有选项,但没有人能满足我的需要。

谢谢

最佳答案

有很多选择可以让你完成你的工作,比如 marquee cssjavascript 等。根据你的要求,你需要一个自定义代码,如 css 和 js。

请检查链接。这就是你需要的。 http://jsfiddle.net/roine/TCJT4/

希望这对您有所帮助!

关于Css 动画 : how to make a scrolling text to be repeated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44921020/

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