用roll.js实现的图片自动滚动+鼠标触动的特效

复制代码 代码如下:


<!-- 
var sh; 
marqueesWidth=533; 
preLeft=0; currentLeft=0; stopscroll=false; getlimit=0;preTop=0; currentTop=0; 

function scrollLeft() 

    if(stopscroll==true) return; 
    preLeft=marquees.scrollLeft; 
    marquees.scrollLeft+=2; 
    if(preLeft==marquees.scrollLeft) 
    { 
        //marquees.scrollLeft=templayer.offsetWidth-marqueesWidth+1; 
    } 


function scrollRight() 

    if(stopscroll==true) return; 

    preLeft=marquees.scrollLeft; 
    marquees.scrollLeft-=2; 
    if(preLeft==marquees.scrollLeft) 
    { 
        if(!getlimit) 
        { 
            marquees.scrollLeft=templayer.offsetWidth*2; 
            getlimit=marquees.scrollLeft; 
        } 
        marquees.scrollLeft-=1; 
    } 


function Left() 

    stopscroll = false; 
    sh = setInterval("scrollLeft()",20); 


function Right() 

    stopscroll = false; 
    sh = setInterval("scrollRight()",20); 


function StopScroll() 

    stopscroll = true; 
    clearInterval( sh ); 




function SelectType(value) 

    document.all.sendForm.page.value = 1; 
    document.all.sendForm.type.value = value; 

    document.all.sendForm.submit(); 


function init() 

    with(marquees) 
    { 
        style.height=0; 
        style.width=marqueesWidth; 
        style.overflowX="hidden"; 
        style.overflowY="visible"; 
        style.align = "center"; 
        noWrap=true; 
    } 



//-->


文件打包下载

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjdgpf.html