zoukankan      html  css  js  c++  java
  • 向左滚动,每次滚动的长度可以设置,然后暂停后继续滚动

     支持FF等所有浏览器
    向左滚动,每次滚动的长度可以设置,然后暂停后继续滚动

    http://www.corange.cn//uploadfiles/2009102202_31236.jpg


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=utf-8">

    <LINK media=screen href="slide/win2.css"
    type=text/css rel=stylesheet>
    <SCRIPT language=javascript src="slide/Fx.js"
    type=text/javascript></SCRIPT>

    <META content="MSHTML 6.00.5730.13" name=GENERATOR></HEAD>
    <BODY>

    <DIV class=hot_words_btnLeft><A id=button_1
    href="#"></A></DIV>
    <DIV class=scroll_box>
    <DIV class=clearfix id=js_1>
    <DL>
    <DT><A href="" target=_blank><IMG height=80
    src="slide/xin2qi-2_55.jpg"
    width=80></A> </DT>
    <DD><A href="" target=_blank>corange.cn</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG height=80
    src="slide/6.jpg" width=80></A> </DT>
    <DD><A href="" target=_blank>ASP,PHP,JSP,JS,ASP.NET,div,CSS等网站建设相关技术</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG height=80
    src="slide/1.jpg" width=80></A>
    </DT>
    <DD><A href="" target=_blank>www.corange.cn</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/2.jpg" width=80></A>
    </DT>
    <DD><A href="" target=_blank>满就送</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/3.jpg" width=80></A>
    </DT>
    <DD><A href="" target=_blank>试衣间</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/4.jpg"
    width=80></A> </DT>
    <DD><A href="" target=_blank>图片空间</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/7.jpg"
    width=80></A> </DT>
    <DD><A href="" target=_blank>社区宝贝分享插件</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/8.jpg"
    width=80></A> </DT>
    <DD><A href="" target=_blank>社区团购插件</A>
    </DD></DL>
    <DL>
    <DT><A href="" target=_blank><IMG
    height=80 src="slide/9.jpg"
    width=80></A> </DT>
    <DD><A href="" target=_blank>网站开发代码</A>
    </DD></DL></DIV></DIV>
    <DIV class=hot_words_btnRight><A id=button_2
    href="#"></A></DIV>
    <SCRIPT language=javascript type=text/javascript>
    var button_1=document.getElementById("button_1");
    var button_2=document.getElementById("button_2");
    var target=document.getElementById("js_1");
    //var el=document.getElementById("js_2");

    var fx=new Fx(target,{property:"left",unit:"px",from:0,to:0,period:800});


    var move=new Move(target,110*4,2,"left",fx);
    move.autoStart();


    button_2.onclick=function(){
    move.left();

    return false;
    }
    button_1.onclick=function(){
    move.right();

    return false;
    }
    target.onmouseover=function(){
    move.autoStop();
    }
    target.onmouseout=function(){
    move.autoStart();
    }
    </SCRIPT>


    </BODY></HTML>
    http://www.corange.cn//uploadfiles/slide_25257.rar

    原文地址:http://www.corange.cn/archives/2009/10/3481.html

  • 相关阅读:
    MATLAB数据处理快速学习教程
    dev -c++ 快捷键
    SQL 通配符
    如何利用SQL语句求日期的时间差值,并汇总网上的一些信息
    matlab使用常犯的错误
    matlab中将矩阵按照行打乱顺序的一个例子
    我所认识的PCA算法的princomp函数与经历 (基于matlab)
    java 读取本地的json文件
    Oracle数据库——SQL基本查询
    Oracle数据库——表的创建与管理
  • 原文地址:https://www.cnblogs.com/zerogo/p/2209098.html
Copyright © 2011-2022 走看看