横向不间断滚动效果代码


本文摘自PHP中文网,作者php中世界最好的语言,侵删。

完整DIV+CSS+JS不间断横向滚动代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>横向不间断滚动DIV</title>

</head>

<body>

<style>

.scroll_div {width:600px; height:49px;margin:0 auto; overflow: hidden; white-space: nowrap; background:#ffffff;}

.scroll_div img {width:120px;height:49px;border: 0;margin: auto 8px; }

#scroll_begin, #scroll_end, #scroll_begin ul, #scroll_end ul, #scroll_begin ul li, #scroll_end ul li{display:inline;}/* 设置ul和li横排 */

</style>

<script language="javascript">

function ScrollImgLeft(){

var speed=20

var scroll_begin = document.getElementById("scroll_begin");

var scroll_end = document.getElementById("scroll_end");

var scroll_div = document.getElementById("scroll_div");

scroll_end.innerHTML=scroll_begin.innerHTML

function Marquee(){

if(scroll_end.offsetWidth-scroll_div.scrollLeft<=0)

scroll_div.scrollLeft-=scroll_begin.offsetWidth

else

scroll_div.scrollLeft++

}

var MyMar=setInterval(Marquee,speed)

scroll_div.onmouseover=function() {clearInterval(MyMar)}

scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed)}

}

</script>

<h2 align="center"><a href="http://www.php.cn/">DIV</a>演示说明:向左滚动</h2>

<div style="text-align:center">

<div class="sqBorder">

<!--#####滚动区域#####-->

<div id="scroll_div" class="scroll_div">

<div id="scroll_begin">

<ul>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" alt="div css" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" alt="divcss" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

<li><a href="http://www.php.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

<li><a href="http://wwwphp.cn/"><img src="http://www.php.cn/img/css-logo.gif" /></a></li>

</ul>

</div>

<div id="scroll_end"></div>

</div>

<!--#####滚动区域#####-->

</div>

<script type="text/javascript">ScrollImgLeft();</script>

</div>

<!--//向左滚动代码结束-->

</body></html>

相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

相关阅读:

驼峰命名与JS的问题解答

前端的js框架总结以及用途讲解

JS里的布尔值、关系运算符、逻辑运算符的详解及实例

以上就是横向不间断滚动效果代码的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

如何用h5实现拖放效果

html5实现眼睛移动效果的示例

在web项目中错误代码整理

关于html中的代码注释

dreamweaver怎么快速对齐代码? dw对齐代码的设置方法_dreamweaver教程_网页制作

html5仿微信聊天界面和朋友圈代码

几种关于html 5 的动态效果制作方法

实现卡片3d翻转效果

安全编程之android apk打包代码混淆(代码实例)

判断登陆是否失效代码

更多相关阅读请进入《不间断》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...