Created
March 19, 2014 01:29
-
-
Save 284km/9633780 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<title>marquee test</title> | |
</head> | |
<body> | |
<marquee>デフォルト</marquee> | |
<marquee width="90%">幅90%</marquee> | |
<marquee behavior="scroll">横切る(デフォルト)</marquee> | |
<marquee behavior="alternate">往復する</marquee> | |
<marquee behavior="slide">端で停止する</marquee> | |
<marquee direction="left">右から左へ(デフォルト)</marquee> | |
<marquee direction="right">左から右へ</marquee> | |
<marquee scrolldelay="100">ちょっと遅く</marquee> | |
<marquee scrollamount="8">ちょっと速く</marquee> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment