-
Notifications
You must be signed in to change notification settings - Fork 2
/
marquee effects.txt
38 lines (34 loc) · 990 Bytes
/
marquee effects.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- Marquee effect Warning -->
<!-- <div id="marquee" class="clearfix">
<span class="text">WARNING! THIS SITE IS UNDER MAINTAINENCE !WARNING THIS SITE IS UNDER MAINTAINENCE </span>
</div>
-->
_____________________
/*marquee animation*/
/*.clearfix::after{
content:"";
clear:both;
display: table;}
#marquee{
width: 100%;
padding-left: 100%;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}
#marquee .text{
display: inline-block;
color:yellow;
font-size: 20px;
font-variant: small-caps;
letter-spacing: 4px;
font-weight: bold;
animation: marquee 15s linear infinite;
}
#marquee .text:hover{
animation-play-state: paused;
}
@keyframes marquee{
0% {transform: translateX(0%);}
100% {transform: translateX(-210%);}
}*/