How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.
var arrayList=[
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."],
["Ambitioni dedisse scripsisse iudicaretur."]
];
.quetoBody{
width: 300px;
margin-left: 150px;
margin-top: 40px;
background-color: aqua;
padding: 15px;
}
@keyframes slydeAnimation {
0% { text-indent: 430px }
100% { text-indent: -485px }
}
@-webkit-keyframes slydeAnimation {
0% { text-indent: 430px }
100% { text-indent: -485px }
}
.slyde {
overflow: hidden;
white-space: nowrap;
animation: slydeAnimation 17s linear infinite;
-webkit-animation: slydeAnimation 17s linear infinite;
}
.slyde:hover {
-webkit-animation-play-state: paused;
animation-play-state: paused;
}
<html>
<head></head>
<body>
<div class="quetoBody">
<p id="queto" class="slyde">
Ambitioni dedisse scripsisse iudicaretur.
</p>
</div>
</body>
</html>
How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.
How can I print the data in the array one by one into the scrolling text using javascript.