Tạo thanh tiêu đều chạy cho webiste bằng JavaScript. | Javascript make your page title run.


Bài viết này tôi xin giới thiệu một đoạn mã JavaScript giúp tiêu đề của webiste chạy từ trái qua phải một cách từ từ giống như mấy cái biển quảng cáo đó ^^! Cái này này chỉ vào cho webiste nhình vui vui thôi, bây giờ ít ai xài lắm ^^!

Mã JavaScript - JavaScript Source

<script language=JavaScript>

var txt=" ..:: WelCome To Website | www.vnlives.net | Nhip song Viet Nam ::..";
var expert=200;

// speed of roll
var refresh=null;

function marquee_title()
{
    document.title = txt;
    txt = txt.substring(1,txt.lenghth)+txt.charAt(0);
    refresh = setTimeout("marquee_title()",expert);
}

marquee_title();

</script>


Mã trang web - Web page source:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>VNLIVES.NET</title>
</head>
<body>

<script language=JavaScript>

var txt=" ..:: WelCome To Website | www.vnlives.net | Nhip song Viet Nam ::..";
var expert=200;

// speed of roll
var refresh=null;

function marquee_title()
{
    document.title = txt;
    txt = txt.substring(1,txt.lenghth)+txt.charAt(0);
    refresh = setTimeout("marquee_title()",expert);
}

marquee_title();

</script>
 
<div>
  <ul>
    <li>VN-Lives là trang web cá nhân do mình tự phát triển, hi vọng sau này có thể phát triển bự hơn.</li>
    <li>Hiện VN-Lives sẽ hoạt động trong lãnh vực chia sẻ kiến thức, kinh   nghiệm và lưu trữ một số thông tin hay trên mạng để sau này mình có thể   xem lại hoặc tái sử dụng.</li>
    <li>Mong các bạn ủng hộ.</li>
  </ul>
</div>


</body>
</html>


Kết quả - Result:




Write: +Bui Ngoc Son





No comments:

Post a Comment