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
|
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <style> ul{ padding: 0; margin: 0; } ul li{ display: inline; margin-right: 20px; } </style> </head> <body> <marquee behavior="scroll" direction="left" height="20" width="200" scrollamount="2" scrolldelay="50" truespeed onmouseover="this.stop()" onmouseout="this.start()"> <ul> <li >●最新促銷商品1</li> <li>●最新促銷商品2</li> <li>●gjhgjhjhgjhjljlklkjlkjlk</li> </ul>
</marquee> </body> </html>
|