// JavaScript Document function js_scroll(){ var str=""; str+="
"; str+="
"; str+="
"; str+=""; str+="
"; str+="
"; str+="
"; str+="点击咨询" str+="点击咨询" str+="
"; str+="
"; str+="
"; str+="
"; str+="
"; window.document.writeln(str); window.setInterval("js_scroll_heartBeat()",1); window.document.getElementById("div_scroll_move").onmousemove=js_scroll_mmove; window.document.getElementById("div_scroll_move").onmouseup=js_scroll_mup; } var js_scroll_obj=''; var js_scroll_lastScrollY=0; function js_scroll_heartBeat(){ diffY=window.document.documentElement.scrollTop; percent=0.1*(diffY-js_scroll_lastScrollY); if(percent>0)percent=window.Math.ceil(percent); else percent=window.Math.floor(percent); window.document.getElementById("div_scroll").style.top=window.parseInt(window.document.getElementById("div_scroll").style.top)+percent+"px"; js_scroll_lastScrollY=js_scroll_lastScrollY+percent; } function js_scroll_mdown(Object){ js_scroll_obj=Object.id; window.document.getElementById(js_scroll_obj).setCapture(); pX=window.event.x-window.document.getElementById(js_scroll_obj).style.pixelLeft; pY=window.event.y-window.document.getElementById(js_scroll_obj).style.pixelTop; } function js_scroll_mmove(){ if(js_scroll_obj!=''){ window.document.getElementById(js_scroll_obj).style.left=window.event.x-pX; window.document.getElementById(js_scroll_obj).style.top=window.event.y-pY; } } function js_scroll_mup(){ if(js_scroll_obj!=''){ window.document.getElementById(js_scroll_obj).releaseCapture(); js_scroll_obj=''; } } function js_scroll_hide(obj){ obj=window.document.getElementById(obj); if(obj.style.display=="none"){obj.style.display="";} else{obj.style.display="none";} }