Bạn từng thấy khi vào một số trang trên trình duyệt chỗ tiêu đề có một dòng chữ chạy rất vui mắt không? Bạn có biết nó làm như thế nào không? Đoạn JavaScript dưới đây sẽ hướng dẫn cách tạo dòng chữ chạy chạy trên thay tiêu đều trang của trình duyệt.
Hỗ trợ trình duyệt: Firefox, IE, Chrome, Safari, Opera
JavaScript Source:
Hỗ trợ trình duyệt: Firefox, IE, Chrome, Safari, Opera
JavaScript Source:
----------
<html>
<head>
<script language="javascript">
msg = "In the world...I am the best :>>.";
msg = "..." + msg;
pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0
window.setTimeout("scrollMSG()", 200);
}
scrollMSG();
</script>
<title>In the world...I am the best :>>.</title>
</head>
<body>
</body>
</html>
--------------
<html>
<head>
<script language="javascript">
msg = "In the world...I am the best :>>.";
msg = "..." + msg;
pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0
window.setTimeout("scrollMSG()", 200);
}
scrollMSG();
</script>
<title>In the world...I am the best :>>.</title>
</head>
<body>
</body>
</html>
--------------
No comments:
Post a Comment