Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[修改] 纯DIY -- 【图片整体横向滚动 带左右方向键 for X1.5正式版】[又增加连续滚动]

  [复制链接]
错入股海 发表于 2010-11-26 09:35:47 | 显示全部楼层
回复 PANPANLUO 的帖子

楼主 你演示站 首页幻灯片 效果能否分享下
回复

使用道具 举报

DZwangbadan 发表于 2010-11-29 16:03:27 | 显示全部楼层
回复 PANPANLUO 的帖子

怎么会错位?模块模板改写数据,门户宽度930,图片宽度150 高度200

  1. <style type="text/css">
  2. <!--
  3. .panpanluoBox{width:930px;overflow:hidden;padding:5px 5 5px 5px;margin:0 auto;}
  4. .panpanluoBox .LeftBotton{height:114px;width:11px;background:url(static/image/common/panpanluo_button_l.gif) no-repeat 0px 0;overflow:hidden;float:left;display:inline;margin:0px 0 0 0;cursor:pointer;}
  5. .panpanluoBox .RightBotton{height:114px;width:11px;background:url(static/image/common/panpanluo_button_r.gif) no-repeat 0px 0;overflow:hidden;float:left;display:inline;margin:0px 0 0 0;cursor:pointer;}
  6. .panpanluoBox .Cont{width:930px;overflow:hidden;float:left;}
  7. .panpanluoBox .ScrCont{width:10000000px;}
  8. .panpanluoBox .Cont .pic{width:135px;float:left;text-align:center;}
  9. .panpanluoBox .Cont .pic img{padding:4px;background:#fff;border:1px solid #ccc;display:block;margin:0 auto;}
  10. .panpanluoBox .Cont .pic p{line-height:26px;color:#505050;}
  11. .panpanluoBox .Cont a:link,.panpanluoBox .Cont a:visited{color:#626466;text-decoration:none;}
  12. .panpanluoBox .Cont a:hover{color:#f00;text-decoration:underline;}
  13. .panpanluoBox #List1,.panpanluoBox #List2{float:left;}
  14. -->
  15. </style>
  16. <div class="module cl ml">
  17. <div class="panpanluoBox">
  18. <div class="LeftBotton" onmousedown="ISL_GoUp()" onmouseup="ISL_StopUp()" onmouseout="ISL_StopUp()"></div>
  19. <div class="Cont" id="ISL_Cont">
  20. <div class="ScrCont">
  21. <div id="List1">
  22. <!-- 图片载入 begin -->
  23. [loop]
  24. <div class="pic">
  25. <a href="{threadurl}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>
  26. <p><a href="{threadurl}" title="{threadsubject}"{target}>{threadsubject}</a></p>
  27. </div>
  28. [/loop]
  29. <!-- 图片载入 end -->
  30. </div>
  31. <div id="List2"></div>
  32. </div>
  33. </div>
  34. <div class="RightBotton" onmousedown="ISL_GoDown()" onmouseup="ISL_StopDown()" onmouseout="ISL_StopDown()"></div>
  35. </div>
  36. </div>
  37. </div>
  38. <script language="javascript" type="text/javascript">
  39. <!--//--><![CDATA[//><!--
  40. var Speed = 1; //速度(毫秒)
  41. var Space = 5; //每次移动(px)
  42. var PageWidth = 945; //移位宽度
  43. var fill = 0; //整体移动
  44. var MoveLock = false;
  45. var MoveTimeObj;
  46. var Comp = 0;
  47. var AutoPlayObj = null;
  48. GetObj("List2").innerHTML = GetObj("List1").innerHTML;
  49. GetObj('ISL_Cont').scrollLeft = fill;
  50. GetObj("ISL_Cont").onmouseover = function(){clearInterval(AutoPlayObj);}
  51. GetObj("ISL_Cont").onmouseout = function(){AutoPlay();}
  52. AutoPlay();
  53. function GetObj(objName){if(document.getElementById){return eval('document.getElementById("'+objName+'")')}else{return eval('document.all.'+objName)}}
  54. function AutoPlay(){ //自动滚动
  55. clearInterval(AutoPlayObj);
  56. AutoPlayObj = setInterval('ISL_GoDown();ISL_StopDown();',5000); //间隔时间
  57. }
  58. function ISL_GoUp(){
  59. if(MoveLock) return;
  60. clearInterval(AutoPlayObj);
  61. MoveLock = true;
  62. MoveTimeObj = setInterval('ISL_ScrUp();',Speed);
  63. }
  64. function ISL_StopUp(){
  65. clearInterval(MoveTimeObj);
  66. if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0){
  67. Comp = fill - (GetObj('ISL_Cont').scrollLeft % PageWidth);
  68. CompScr();
  69. }else{
  70. MoveLock = false;
  71. }
  72. AutoPlay();
  73. }
  74. function ISL_ScrUp(){
  75. if(GetObj('ISL_Cont').scrollLeft <= 0){GetObj('ISL_Cont').scrollLeft = GetObj('ISL_Cont').scrollLeft + GetObj('List1').offsetWidth}
  76. GetObj('ISL_Cont').scrollLeft -= Space ;
  77. }
  78. function ISL_GoDown(){
  79. clearInterval(MoveTimeObj);
  80. if(MoveLock) return;
  81. clearInterval(AutoPlayObj);
  82. MoveLock = true;
  83. ISL_ScrDown();
  84. MoveTimeObj = setInterval('ISL_ScrDown()',Speed);
  85. }
  86. function ISL_StopDown(){
  87. clearInterval(MoveTimeObj);
  88. if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0 ){
  89. Comp = PageWidth - GetObj('ISL_Cont').scrollLeft % PageWidth + fill;
  90. CompScr();
  91. }else{
  92. MoveLock = false;
  93. }
  94. AutoPlay();
  95. }
  96. function ISL_ScrDown(){
  97. if(GetObj('ISL_Cont').scrollLeft >= GetObj('List1').scrollWidth){GetObj('ISL_Cont').scrollLeft = GetObj('ISL_Cont').scrollLeft - GetObj

  98. ('List1').scrollWidth;}
  99. GetObj('ISL_Cont').scrollLeft += Space ;
  100. }
  101. function CompScr(){
  102. var num;
  103. if(Comp == 0){MoveLock = false;return;}
  104. if(Comp < 0){
  105. if(Comp < -Space){
  106. Comp += Space;
  107. num = Space;
  108. }else{
  109. num = -Comp;
  110. Comp = 0;
  111. }
  112. GetObj('ISL_Cont').scrollLeft -= num;
  113. setTimeout('CompScr()',Speed);
  114. }else{
  115. if(Comp > Space){
  116. Comp -= Space;
  117. num = Space;
  118. }else{
  119. num = Comp;
  120. Comp = 0;
  121. }
  122. GetObj('ISL_Cont').scrollLeft += num;
  123. setTimeout('CompScr()',Speed);
  124. }
  125. }
  126. //--><!]]>
  127. </script>
复制代码

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

feho 发表于 2010-11-29 16:23:11 | 显示全部楼层
这个要留名。。。。
回复

使用道具 举报

yxfwz 发表于 2010-11-30 10:49:05 | 显示全部楼层
这个不错
回复

使用道具 举报

success_ok 发表于 2010-12-1 16:44:53 | 显示全部楼层


我的门户宽度就是960的      为什么还长出来   对不齐呢?

楼主  怎么弄?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

天文 发表于 2010-12-1 17:09:42 | 显示全部楼层
回复

使用道具 举报

wss7758 发表于 2010-12-2 17:03:32 | 显示全部楼层
留纪念
回复

使用道具 举报

大家乡网 发表于 2010-12-2 17:05:02 | 显示全部楼层
回复

使用道具 举报

b8329 发表于 2010-12-6 09:19:13 | 显示全部楼层
回复 PANPANLUO 的帖子

顶你!
回复

使用道具 举报

liupeng0436 发表于 2010-12-6 13:14:27 | 显示全部楼层
收藏备用
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 11:02 , Processed in 0.061461 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表