ホームページ  >  記事  >  ウェブフロントエンド  >  Javascript でスクロール効果をシミュレートするスクリプト ページ 1/2_JavaScript スキル

Javascript でスクロール効果をシミュレートするスクリプト ページ 1/2_JavaScript スキル

PHP中文网
PHP中文网オリジナル
2016-05-16 19:00:451109ブラウズ

コード

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
<title>Insert title here</title> 
<script type="text/javascript"> 
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_bottom) && 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_top)+"px"; 
        } 
        areaScroll();         
    }     
} 
function clickNarrowdown(){ 
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_bottom) && 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_top)+"px"; 
        } 
        areaScroll(); 
    } 
} 
function mousedown(e){ 
var oEvent = oEventUtil.getEvent(); 
y = parseInt(oEvent.pageY) - parseInt(scroll_hand.offsetTop); 
oEventUtil.addEventHandler(scroll_hand, "mousemove", mousemove); 
oEventUtil.addEventHandler(scroll_hand, "mouseup", mouseup); 
oEventUtil.addEventHandler(scroll_hand, "mouseout", mouseout); 
} 
function mousemove(e){ 
    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_bottom) && parseInt(scroll_hand.offsetTop) >= 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)<parseInt(scroll_hand_top)){ 
            scroll_hand.style.top = parseInt(scroll_hand_top)+"px"; 
        } 
        areaScroll(); 
    } 
} 
function mouseup(e){ 
    oEventUtil.removeEventHandler(scroll_hand,"mousemove",mousemove); 
    oEventUtil.removeEventHandler(scroll_hand,"mouseup",mouseup); 
} 
function mouseout(e){ 
    oEventUtil.removeEventHandler(scroll_hand,"mousemove",mousemove); 
    oEventUtil.removeEventHandler(scroll_hand,"mouseout",mouseout); 
} 
function displayScrollbar(){ 
    if(category_list.scrollHeight > 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); 
} 
</script> 
<style type="text/css"> 
.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;} 
</style> 
</head> 
<body> 
<div class="category_list"> 
<ul id="category_list"> 
    <li>1something</li> 
    <li>2something</li> 
    <li>3something</li> 
    <li>4something</li> 
    <li>5something</li> 
    <li>6something</li> 
    <li>7something</li> 
    <li>8something</li> 
    <li>9something</li> 
    <li>10something</li> 
    <li>11something</li> 
    <li>12something</li> 
    <li>13something</li> 
    <li>14something</li> 
    <li>15something</li> 
    <li>16something</li> 
    <li>17something</li> 
    <li>18something</li> 
    <li>19something</li> 
    <li>20something</li> 
    <li>21something</li> 
    <li>22something</li> 
    <li>23something</li> 
    <li>24something</li> 
    <li>25something</li> 
    <li>26something</li> 
    <li>27something</li> 
    <li>28something</li> 
    <li>29something</li> 
    <li>30something</li> 
</ul> 
<div id="category_scroll"> 
    <div id="scrollup">上</div> 
            <div id="scroll_hand">滚动滚动滚动</div> 
            <div id="scrolldown">下</div> 
            <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> 
        </div> 
     </div> 
</body> 
</html>

ここで問題が発生します。スクロール バーをクリックすると、キーボードの上下キーがトリガーされて上下のスクロールが制御されます。しかし、一般的にキーボードイベントは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");
}
}
この質問への回答を手伝ってください。

質問 2: このコードでは、変数を定義するときに、HTML の途中にコードを挿入してオブジェクトを取得しています。このコードが window.onload 関数に挿入されている可能性が高くなります。現時点では、これらのオブジェクトはロードされていないため、読み取ることができず、プログラムエラーが発生します。完全に実行したい場合は、次のようになります。
4ec11beb6c39d0703d1751d203c17053
var category_scroll = document.getElementById("category_scroll");
varscroll_hand = document.getElementById("scroll_hand");
var スクロールアップ = document.getElementById("scrollup");
var スクロールダウン = document.getElementById("scrolldown");
var category_list = document.getElementById("category_list");
2cacc6d41bbb37262a98f745aa00fbf0 93f0f5c25f18dab9d176bd4f6de5d30e への
の導入に対処する最善の方法は何ですか?
blueidea モデレータによって提供された解決策

1. 統合された展開のためにキーボード イベントをウィンドウに追加し、category_hand のアクティブ化ステータスに従って処理する必要があります。
2. 関数に入れて、ページがロードされるまで待ってから実行します。
1. 「統合デプロイメントのためにキーボード イベントをウィンドウに追加し、category_hand のアクティブ化ステータスに従って処理する必要があります」は、次の文を実現するための戦略です。
「スクロール バーがクリックされたときに、上とキーボードの下キーで上下にスクロールします。
category_hand をクリックすると、変数が 1 に設定され、アクティブになったことを示します。 Web ページで別のマウス ボタン イベントが発生すると、そのイベントは非アクティブになります。
ウィンドウ オブジェクトのキーボード イベントに関数が応答し、キーボード イベントの発生時に category_hand がアクティブになると、関連するコードが実行されます。

2. ページ要素オブジェクトを取得します。ここでは、一般に $() 関数を使用します。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。