Javascript模拟scroll滚动效果脚本第1/2页

Insert title here

var oEventUtil = new Object();
oEventUtil.addEventHandler = function (oTarget,sType,fnDo){
if(oTarget.addEventListener){
oTarget.addEventListener(sType,fnDo,false)
}
if(oTarget.attachEvent){
oTarget.attachEvent("on"+sType,fnDo)
}
else{
oTarget["on"+sType] = fnDo;
}
}
oEventUtil.removeEventHandler = function (oTarget,sType,fnDo){
if(oTarget.removeEventListener){
oTarget.removeEventListener(sType,fnDo,false)
}
if(oTarget.detachEvent){
oTarget.detachEvent("on"+sType,fnDo)
}
else{
oTarget["on"+sType] = null;
}
}
oEventUtil.getEvent = function() {
if (window.event) {
return this.formatEvent(window.event);
} else {
return oEventUtil.getEvent.caller.arguments[0];
}
}
oEventUtil.formatEvent = function (oEvent)
{
oEvent.pageY = oEvent.clientY + document.body.scrollTop;
return oEvent;
}
function areaScroll(){
var scroll_hand_top = parseInt(scrollup.offsetHeight);
var scroll_hand_bottom = parseInt(category_list.offsetHeight) - parseInt(scrolldown.offsetHeight) - parseInt(scroll_hand.offsetHeight);
category_list.scrollTop = (parseInt(category_list.scrollHeight)-parseInt(category_list.offsetHeight) + parseInt(scrollup.offsetHeight))*(parseInt(scroll_hand.style.top)-parseInt(scrollup.offsetHeight))/(parseInt(scroll_hand_bottom)-parseInt(scrollup.offsetHeight))-parseInt(scrollup.offsetHeight);

}
function clickNarrowup(){
var oEvent = oEventUtil.getEvent();
var scroll_hand_top = parseInt(scrollup.offsetHeight);
var scroll_hand_bottom = parseInt(category_list.offsetHeight) - parseInt(scrolldown.offsetHeight) - parseInt(scroll_hand.offsetHeight);

if(parseInt(scroll_hand.offsetTop) = parseInt(scroll_hand_top)){
scroll_hand.style.top = parseInt(scroll_hand.offsetTop) - 10 +"px";
if(parseInt(scroll_hand.style.top) >= parseInt(scroll_hand_bottom)){
scroll_hand.style.top = parseInt(scroll_hand_bottom)+"px";
}
if(parseInt(scroll_hand.style.top)= parseInt(scroll_hand_top)){
scroll_hand.style.top = parseInt(scroll_hand.offsetTop) + 10 +"px";
if(parseInt(scroll_hand.style.top) > parseInt(scroll_hand_bottom)){
scroll_hand.style.top = parseInt(scroll_hand_bottom)+"px";
}
if(parseInt(scroll_hand.style.top)= parseInt(scroll_hand_top)){
scroll_hand.style.top = parseInt(oEvent.pageY) - y + "px";
if(parseInt(scroll_hand.style.top) > parseInt(scroll_hand_bottom)){
scroll_hand.style.top = parseInt(scroll_hand_bottom)+"px";
}
if(parseInt(scroll_hand.style.top) category_list.offsetHeight){
category_scroll.style.display="block";
}
else{category_scroll.style.display="none";}
}
window.onload = function () {
//var category_scroll = document.getElementById("category_scroll");
//var scroll_hand = document.getElementById("scroll_hand");
//var scrollup = document.getElementById("scrollup");
//var scrolldown = document.getElementById("scrolldown");
//var category_list = document.getElementById("category_list");
category_list.scrollTop = 0;
displayScrollbar();
oEventUtil.addEventHandler(scroll_hand,"mousedown",mousedown);
oEventUtil.addEventHandler(scrollup,"click",clickNarrowup);
oEventUtil.addEventHandler(scrolldown,"click",clickNarrowdown);
}

.category_list{width:200px;border:solid 1px #666666;height:300px;position:relative;}
#category_list{list-style:none;margin:0;padding:0;padding-left:20px;overflow:hidden;height:298px;}
#category_scroll{height:298px;width:15px;border:green solid 1px;position:absolute;right:0;top:0;font-size:12px;cursor:hand;}
#scrollup{height:15px;width:15px;border:green solid 1px;}
#scroll_hand{height:100px;width:15px;border:green solid 1px;position:absolute;}
#scrolldown{height:15px;width:15px;border:green solid 1px;position:absolute;bottom:0;}

  • 1something
  • 2something
  • 3something
  • 4something
  • 5something
  • 6something
  • 7something
  • 8something
  • 9something
  • 10something
  • 11something
  • 12something
  • 13something
  • 14something
  • 15something
  • 16something
  • 17something
  • 18something
  • 19something
  • 20something
  • 21something
  • 22something
  • 23something
  • 24something
  • 25something
  • 26something
  • 27something
  • 28something
  • 29something
  • 30something

滚动滚动滚动

var category_scroll = document.getElementById("category_scroll");
var scroll_hand = document.getElementById("scroll_hand");
var scrollup = document.getElementById("scrollup");
var scrolldown = document.getElementById("scrolldown");
var category_list = document.getElementById("category_list");

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

现在有个问题就是当点中滚动条后,触发键盘的上下键,来控制上下滚动。然而,一般情况下,键盘事件似乎只针对Form表单对象和Winsow窗体对象起作用(除IE),那么当创建事件处理函数时该怎们写呢?
oEventUtil.addEventHandler(category_hand,"keyup",test),似乎是不行,毕竟category_hand代表的是一个DIV
test()函数如下:
function test(){
//alert("RUN");
var oEvent = oEventUtil.getEvent();
if(oEvent.keyCode==38){
alert("UP");
clickNarrowup();
}
if(oEvent.keyCode==40){
clickNarrowdown();
alert("DOWN");
}
}
请高手帮忙解答一下。

疑问二:这段代码中,在定义变量的时候我是在HTML中间插入的代码,用于获取对象,如果这段代码插入到window.onload函数中时,那么很有可能此时这些对象尚未加载,无法读取到而产生程序错误,那么问题就是,如果我想完全将:
<script type="text/javascript">
var category_scroll = document.getElementById("category_scroll");
var scroll_hand = document.getElementById("scroll_hand");
var scrollup = document.getElementById("scrollup");
var scrolldown = document.getElementById("scrolldown");
var category_list = document.getElementById("category_list");
</script>
引入到<head>之间怎们处理比较好呢?
blueidea版主给出的解决方法

当前1/2页 12下一页阅读全文

(0)

相关推荐

  • 利用JS实现scroll自定义滚动效果详解

    前言 最近在公司开发项目的时候,原生滚动条中有些东西没办法自定义去精细的控制,于是开发一个类似于better-scroll一样的浏览器滚动监听的JS实现,下面我们就来探究一下自定义滚动需要考虑哪些东西,经过哪些过程.话不多说了,来一起看看详细的介绍吧. 选择滚动监听的事件 因为是自定义手机端的滚动事件,那我选择的是监听手机端的三个touch事件来实现监听,并实现了两种滚动效果,一种是通过-webkit-transform,一种是通过top属性.两种实现对于滚动的基本效果够能达到,可是top的不适

  • Javascript模拟scroll滚动效果脚本第1/2页

    Insert title here var oEventUtil = new Object(); oEventUtil.addEventHandler = function (oTarget,sType,fnDo){ if(oTarget.addEventListener){ oTarget.addEventListener(sType,fnDo,false) } if(oTarget.attachEvent){ oTarget.attachEvent("on"+sType,fnDo)

  • 基于JavaScript实现无缝滚动效果

    本文实例为大家分享了JavaScript实现无缝滚动效果展示的具体代码,供大家参考,具体内容如下 首先应该区分样式中的绝对定位和相对定位,一般来说,移动的单位为绝对定位,在这个实例中,移动的Ul就是绝对定位 ,否则它根本无法滚动,而它相对于div1滚动 ,则div1就作为他的相对定位. oUl.innerHTML=oUl.innerHTML+oUl.innerHTML;这段代码是实现无缝滚动的核心,使之可以在不论左右滚动的时候都有下一步图片接上去. 在操作或者进行比较的时候,都要用offset取

  • JS+CSS3模拟溢出滚动效果

    移动开发的时候,我们经常会遇到滑动事件,众所周知手机端滑动主要依靠touch事件.最近接连遇到两个页面都有类似overflow:auto的效果,一般情况下通过css设置是可以实现的(虽说丑了点儿),,但是一旦overflow:auto的元素响应touch事件时就会有诸多不便,例如fullpage中某一元素自滑动,我们可以通过normalScrollElements来使元素滑动的时候不滑动到下一屏,但是在元素滑动到最底部的时候也就不能响应下一屏事件,上滑也是一样,这时候就需要touch事件来响应,

  • Javascript实现信息滚动效果

    本文实例为大家分享了js信息滚动效果的具体代码,供大家参考,具体内容如下 向上无缝滚动: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>向上无缝滚动</title> <style> body { font-size: 12px; line-height: 24p

  • 基于JavaScript实现屏幕滚动效果

    屏幕滚动效果: <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> ul,ol { list-style-type: none; } * {margin:0;padding:0;} html,body { width: 100%; height: 100%; } #ul { width: 100%; hei

  • 利用JavaScript实现新闻滚动效果(实例代码)

    最近要实现一个滚动新闻效果,在网上查了一些资料,发现基本的实现方法有两种: 1.使用Marquee标签.这个标签的使用我已经转载了一篇比较详细的文章,这个标签的优点是便于使用,缺点是人们已经逐渐不适用它了,许多浏览器不支持,甚至在IE8想,XHTML4.0的loose.dtd是可以的,而去掉loose.dtd却不行. 2.使用div+javascript的方法.这种方法的好处是可以兼容几乎所有的浏览器,并且在可以预料的时间内仍能稳定运行.并且使用div使得网页可以利用现有的css资源实现很多炫目

  • 用SwiftUI实现3D Scroll滚动效果的实现代码

    本文介绍了用SwiftUI实现3D Scroll效果的实现代码,分享给大家,具体如下: 我们预览下今天要实现的 3D scroll 效果.学完本教程后,你就可以在你的 App 中把这种 3D 效果加入任何自定义的 SwiftUI 视图.下面我们来开始本教程的学习. 入门 首先,创建一个新的 SwiftUI 视图.为了举例说明,在这个新视图中,我会展示一个有各种颜色的矩形列表,并把新视图命名为 ColorList . import SwiftUI struct ColorList: View {

  • javascript模拟的Ping效果代码 (Web Ping)

    当然,在请求时无法统计HTTP头部的长度,所以当请求数据包长度在最大传输单元临界点时,额外的HTTP头可以导致IP分组,因此存在一定的误差.(2009/6/21) 在线演示:http://demo.jb51.net/js/2011/ping/ 核心代码: 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh

  • jQuery实现返回顶部按钮和scroll滚动功能[带动画效果]

    jQuery脚本: <script type="text/javascript"> $(function() { var scrollDiv = document.createElement('div'); $(scrollDiv).attr('id', 'toTop').html('^ 返回顶部').appendTo('body'); $(window).scroll(function() { if ($(this).scrollTop() != 0) { $('#toT

  • javascript实现的左右无缝滚动效果

    本文实例讲述了javascript实现的左右无缝滚动效果.分享给大家供大家参考,具体如下: 前面介绍过图片左右滚动,不过图片是间歇性的一张一张滚动,今天介绍的是几张图片一起进行无缝滚动,这是一个常用的 js 效果. <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>无缝滚动--左右</title> &

随机推荐