diff options
| author | s1n <[email protected]> | 2020-03-04 01:58:07 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-04 01:58:07 -0800 |
| commit | b1df5a6c1cd87016797a0582875ad6bd315010ff (patch) | |
| tree | cd3f6aadf7568819a70c7661f4d1d3ad63fe2d07 /scrolling-title/index.html | |
| download | html-examples-master.tar.xz html-examples-master.zip | |
Diffstat (limited to 'scrolling-title/index.html')
| -rw-r--r-- | scrolling-title/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scrolling-title/index.html b/scrolling-title/index.html new file mode 100644 index 0000000..22071bd --- /dev/null +++ b/scrolling-title/index.html @@ -0,0 +1,30 @@ +<!DOCTYPE html>
+<html lang="en">
+
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>s1nical - Scrolling Title</title>
+ <!--<script language="JavaScript">
+ var space = " ";
+ var speed = "60";
+ var pos = 0;
+ var msg = "// s1n.ical "; /*Enter the scrolling title as the msg variable's value.*/
+
+ function Scroll() {
+ document.title = msg.substring(pos, msg.length) + space + msg.substring(0, pos);
+ pos++;
+ if (pos > msg.length) pos = 0;
+ window.setTimeout("Scroll()", speed);
+ }
+ Scroll();
+ </script>-->
+ <script src="js/main.js"></script>
+ </head>
+
+ <body>
+
+ </body>
+
+</html>
\ No newline at end of file |