网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 背景图像 >> 正文
最新文章
· 带文字说明的js幻灯片代码
· 浏览器全屏浏览图片集
· 创意中国flash+xml焦点图代码
· 仿QQ商城焦点图jquery幻灯特效
· 带缓冲效果的图片幻灯片
· css和jquery配合完成-ipad向左向右拖
· 图片自动按比例缩小代码(防止页面被
· 仿QQ新闻图片浏览效果
· 一个横向滑动的图片切换容器代码
· 鼠标移入/移出改变图片透明度
热门文章
 图片上的左右箭头切换上一张下一张
 带缩略图和左右箭头自动切换的图片
 产品展示专用的jQuery图片幻灯+缩略
 Flash+XML前后按钮的超漂亮图片切换
 图片左右滚动,带有左右方向控制
 Jquery幻灯片/焦点图插件KinSlides
 JS 图片左右滚动,图片控制左右滚动
 可控制左右滚动的无缝图片滚动特效
 可控制图片放大缩小还原移动效果的
 非常漂亮的JS带缩略图的幻灯图片切
相关文章
没有相关文章
可控制的图片上下滚动效果
来源:源码爱好者 更新时间:2011/10/8 8:58:55 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无缝滚动</title>
<style type="text/css">
body,div,ul,li{margin:0;padding:0;}
body{background:#052D01;font:12px/1.5 arial;}
#box{position:relative;width:210px;height:700px;border:1px solid #5E8743;margin:20px;}
#box div{position:absolute;top:50%;left:50%;width:160px;height:570px;overflow:hidden;margin:-285px 0 0 -80px;}
#box .up,#box .down{position:absolute;left:50%;width:48px;height:48px;z-index:10;cursor:pointer;overflow:hidden;margin-left:-24px;text-indent:-9999px;background:url(/effects/UploadFiles_7074/201110/arrow.jpg) no-repeat;}
#box .up{top:10px;background-position:0 0;}
#box .down{bottom:10px;background-position:0 bottom;}
#box ul{position:absolute;width:160px;}
#box li{width:160px;height:190px;list-style:none;text-align:center;}
#box a{color:#fff;font-weight:700;text-decoration:none;}
#box img{width:156px;height:156px;display:block;margin-bottom:5px;border:2px solid #ccc;}
</style>
<script type="text/javascript">
//获取id
function $ (id)
{
 return typeof id === "string" ? document.getElementById(id) : id; 
}
//获取tagName
function $$ (elem, oParent)
{
 return (oParent || document).getElementsByTagName(elem); 
}
//获取class
function $$$ (className, oParent)
{
 var aClass = [];
 var reClass = new RegExp("(//s|^)" + className + "($|//s)");
 var aElem = $$("*", oParent);
 for (var i = 0; i < aElem.length; i++) reClass.test(aElem[i].className) && aClass.push(aElem[i]);
 return aClass
}
//初始化对象
function Roll ()
{
 this.initialize.apply(this, arguments) 
}
Roll.prototype =
{
 initialize: function (obj)
 {
  var _this = this;
  this.obj = $(obj);
  this.oUp = $$$("up", this.obj)[0];
  this.oDown = $$$("down", this.obj)[0];
  this.oList = $$$("list", this.obj)[0];
  this.aItem = this.oList.children;
  this.timer = null;
  this.iNow = 0;
  this.iHeight = this.aItem[0].offsetHeight;
  this.oUp.onclick = function ()
  {
   _this.up() 
  };
  this.oDown.onclick = function ()
  {
   _this.down()
  } 
 },
 up: function ()
 {
  this.oList.insertBefore(this.aItem[this.aItem.length - 1], this.oList.firstChild);
  this.oList.style.top = -this.iHeight + "px";
  this.doMove(0)
 },
 down: function ()
 {
  this.doMove(-this.iHeight, function ()
  {
   this.oList.appendChild(this.aItem[0]);
   this.oList.style.top = 0; 
  })
 },
 doMove: function (iTarget, callBack)
 {
  var _this = this;
  clearInterval(this.timer)
  this.timer = setInterval(function ()
  {
   var iSpeed = (iTarget - _this.oList.offsetTop) / 5;
   iSpeed = iSpeed > 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed);
   _this.oList.offsetTop == iTarget ? (clearInterval(_this.timer), callBack && callBack.apply(_this)) : _this.oList.style.top = iSpeed + _this.oList.offsetTop + "px"
  }, 30)
 }
};
window.onload = function ()
{
 new Roll("box");
};
</script>
</head>
<body>
<div id="box">
    <span class="up">up</span>
    <span class="down">down</span>
    <div>
        <ul class="list">
            <li><a href="javascript:;"><img src="/effects/UploadFiles_7074/201110/wall_s1.jpg" />Ozolio - Webcam Hosting</a></li>
            <li><a href="javascript:;"><img src="/effects/UploadFiles_7074/201110/wall_s2.jpg" />Sullivan Construction Inc.</a></li>
            <li><a href="javascript:;"><img src="/effects/UploadFiles_7074/201110/wall_s3.jpg" />Maui Stables</a></li>
            <li><a href="javascript:;"><img src="/effects/UploadFiles_7074/201110/wall_s4.jpg" />Code Rebel 3.0</a></li>
            <li><a href="javascript:;"><img src="/effects/UploadFiles_7074/201110/wall_s5.jpg" />SecurityPro Shop</a></li>
        </ul>
    </div>
</div>
</body>
</html>
△运行 ☉预览 #复制 +收藏
特效说明:

  图片上下滚动,无缝JS滚动,点击一次滚动一下,简洁、实用,用在侧边栏中的滚动相必是非常不错的。

  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号