代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
JS
】
向上下左右不间断无缝滚动图片的效果(兼容火狐和IE)
作者:
caitianzhihot
/ 发布于
2012/8/3
/
627
向上下左右不间断无缝滚动图片的效果(兼容火狐和IE)
<div><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"> <html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>向上下左右不间断无缝滚动图片的效果(兼容火狐和IE)- 同穷论坛</title> </head> <body> <div id="colee" style="overflow:hidden;height:253px;width:410px;"> <div id="colee1"> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> </div> <div id="colee2"></div> </div> <script> var speed=30; var colee2=document.getElementById("colee2"); var colee1=document.getElementById("colee1"); var colee=document.getElementById("colee"); colee2.innerHTML=colee1.innerHTML; //克隆colee1为colee2 function Marquee1(){ //当滚动至colee1与colee2交界时 if(colee2.offsetTop-colee.scrollTop<=0){ colee.scrollTop-=colee1.offsetHeight; //colee跳到最顶端 }else{ colee.scrollTop++ } } var MyMar1=setInterval(Marquee1,speed)//设置定时器 //鼠标移上时清除定时器达到滚动停止的目的 colee.onmouseover=function() {clearInterval(MyMar1)} //鼠标移开时重设定时器 colee.onmouseout=function(){MyMar1=setInterval(Marquee1,speed)} </script> <!--向上滚动代码结束--> <!--下面是向下滚动代码--> <div id="colee_bottom" style="overflow:hidden;height:253px;width:410px;"> <div id="colee_bottom1"> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> <img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></p">http://www.tongqiong.com/images/wind/logo.png"></p</a>> </div> <div id="colee_bottom2"></div> </div> <script> var speed=30 var colee_bottom2=document.getElementById("colee_bottom2"); var colee_bottom1=document.getElementById("colee_bottom1"); var colee_bottom=document.getElementById("colee_bottom"); colee_bottom2.innerHTML=colee_bottom1.innerHTML colee_bottom.scrollTop=colee_bottom.scrollHeight function Marquee2(){ if(colee_bottom1.offsetTop-colee_bottom.scrollTop>=0) colee_bottom.scrollTop+=colee_bottom2.offsetHeight else{ colee_bottom.scrollTop-- } } var MyMar2=setInterval(Marquee2,speed) colee_bottom.onmouseover=function() {clearInterval(MyMar2)} colee_bottom.onmouseout=function() {MyMar2=setInterval(Marquee2,speed)} </script> <!--向下滚动代码结束--> <!--下面是向左滚动代码--> <div id="colee_left" style="overflow:hidden;width:500px;"> <table cellpadding="0" cellspacing="0" border="0"> <tr><td id="colee_left1" valign="top" align="center"> <table cellpadding="2" cellspacing="0" border="0"> <tr align="center"> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> </tr> </table> </td> <td id="colee_left2" valign="top"></td> </tr> </table> </div> <script> //使用div时,请保证colee_left2与colee_left1是在同一行上. var speed=30//速度数值越大速度越慢 var colee_left2=document.getElementById("colee_left2"); var colee_left1=document.getElementById("colee_left1"); var colee_left=document.getElementById("colee_left"); colee_left2.innerHTML=colee_left1.innerHTML function Marquee3(){ if(colee_left2.offsetWidth-colee_left.scrollLeft<=0)//offsetWidth 是对象的可见宽度 colee_left.scrollLeft-=colee_left1.offsetWidth//scrollWidth 是对象的实际内容的宽,不包边线宽度 else{ colee_left.scrollLeft++ } } var MyMar3=setInterval(Marquee3,speed) colee_left.onmouseover=function() {clearInterval(MyMar3)} colee_left.onmouseout=function() {MyMar3=setInterval(Marquee3,speed)} </script> <!--向左滚动代码结束--> <!--下面是向右滚动代码--> <div id="colee_right" style="overflow:hidden;width:500px;"> <table cellpadding="0" cellspacing="0" border="0"> <tr><td id="colee_right1" valign="top" align="center"> <table cellpadding="2" cellspacing="0" border="0"> <tr align="center"> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> <td><img src="<a href="http://www.tongqiong.com/images/wind/logo.png"></td">http://www.tongqiong.com/images/wind/logo.png"></td</a>> </tr> </table> </td> <td id="colee_right2" valign="top"></td> </tr> </table> </div> <script> var speed=30//速度数值越大速度越慢 var colee_right2=document.getElementById("colee_right2"); var colee_right1=document.getElementById("colee_right1"); var colee_right=document.getElementById("colee_right"); colee_right2.innerHTML=colee_right1.innerHTML function Marquee4(){ if(colee_right.scrollLeft<=0) colee_right.scrollLeft+=colee_right2.offsetWidth else{ colee_right.scrollLeft-- } } var MyMar4=setInterval(Marquee4,speed) colee_right.onmouseover=function() {clearInterval(MyMar4)} colee_right.onmouseout=function() {MyMar4=setInterval(Marquee4,speed)} </script> <!--向右滚动代码结束--> </body> </html></div>
试试其它关键字
无缝滚动图片
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
caitianzhihot
贡献的其它代码
(
5
)
.
记录各搜索蜘蛛爬行记录php代码
.
世界末日倒计时代码
.
创建日期目录
.
简化消息框的调用
.
向上下左右不间断无缝滚动图片的效果(兼容火狐和IE)
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3