Forum Replies Created
-
AuthorPosts
-
in reply to: Marquee In Container #871727
I’m using below given CSS but the speed is very very fast. is there any way that i can slow it down ?
https://mbm.maraibinmahfouz.com/full-content/
#marqueeDIV {
margin-top: 150px;
-moz-animation: marquee 50s linear infinite;
-webkit-animation: marquee 50s linear infinite;
animation: marquee 50s linear infinite;
}#marqueeDIV:hover {
animation-play-state:paused;
}@-moz-keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(0, -100%);
}
}
@-webkit-keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(0, -100%);
}
}
@keyframes marquee {
0% {
-moz-transform: translate(0, 0);
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
100% {
-moz-transform: translate(0, -100%);
-webkit-transform: translate(0, -100%);
transform: translate(0, -100%);
}
}in reply to: Marquee In Container #871726Dear Gabi, Thanks For Your Reply.
60% Of My Problem Is Solved By Your Code. But How Can I Stop The Marquee When Mouse HOVERs. -
AuthorPosts