PluginProbe
Simple Ticker / trunk
Simple Ticker vtrunk
trunk 1.0 1.01 1.02 1.03 1.04 1.05 1.06 1.07 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.07 2.08 2.09 2.10 2.11 3.00 3.01 3.02 3.03 All 33 releases
simple-ticker / css / marquee.css

marquee.css in Simple Ticker trunk, at css/marquee.css

26 lines 558 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .marquee {
2 overflow: hidden;
3 position: relative;
4 }
5 .marquee::after {
6 content: "";
7 white-space: nowrap;
8 display: inline-block;
9 }
10 .marquee > .marquee-inner {
11 position: absolute;
12 top: 0;
13 white-space: nowrap;
14 animation-name: marquee;
15 animation-timing-function: linear;
16 animation-iteration-count: infinite;
17 }
18 .marquee > .marquee-inner:hover {
19 animation-play-state: paused;
20 cursor: default;
21 }
22 @keyframes marquee {
23 0% { left: 100%; transform: translate(0); }
24 100% { left: 0; transform: translate(-100%); }
25 }
26