title向左_右滚动效果

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
 <title>我爱自己想</title>
  <script type="text/javascript">
    //效果:向左,向右滚动.
    //setInterval事件.
    var dir='left';


    setInterval(function (){

       if(dir==='left'){
      //实现向左滚动
        var firstDoc=document.title.charAt(0);    
        var others=document.title.substring(1,document.title.length);
        document.title=others+firstDoc;
   
       }else if(dir==='right'){

       var lastDoc=document.title.charAt(document.title.length-1);
    
       var others=document.title.substring(0,document.title.length-1);
    
       document.title=lastDoc+others;    }
      },1000);
   
   //为两个button注册单击事件
     window.οnlοad=function (){
      //left:
      document.getElementById('idLeft').οnclick=function (){
        dir='left';
        }
     //right;
       document.getElementById('idright').οnclick=function (){
        dir='right';
      }
   }
  </script>
 </head>
   
 <body>   
    <input type="button" name="name" value="left" id="idLeft" οnclick="leftMoths()"></input>
    <input type="button" name="name" value="right" id="idright" οnclick="rightMoths()"></input>

 </body>
</html>

转载于:https://www.cnblogs.com/nqsan/p/3182895.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值