发新话题
打印

如何做滚动效果?

如何做滚动效果?

就是在最中间有个层或话框,有上下两个图片,把鼠标放到向上的图片时向上滚动,向下是向下滚动。  
要怎么实现?把代码帖出来行吗?

TOP

<script>var  timer</script>  
<div  id=demo  style="width:100;height:100;overflow:auto">  
就是在最中间有个层或话框,有上下两个图片,把鼠标放到向上的图片时向上滚动,向下是向下滚动。  
要怎么实现?把代码帖出来行吗?  
</div>  
<img  src="up.gif"  onmouseover="timer=setInterval('demo.scrollTop--',1)"  onmouseout="clearInterval(timer)">  
<img  src="down.gif"  onmouseover="timer=setInterval('demo.scrollTop++',1)"  onmouseout="clearInterval(timer)">

TOP

http://asp.6to23.com/dhlyyy/jimo/z_z.asp  

请查看源代码  
<tr>  
                               <td  height="49"><img  src="image/up.gif"  width="10"  height="31"onmouseup="movover();movstar(-1,20)"  class="opacity"  onmousedown="movover();movstar(-3,2)"  onmouseover="movstar(-1,20);o_down(this)"  onmouseout="movover();o_up(this)"alt="鼠标点住不放加速移动"  >  
                                               </td>  
                           </tr>  
                           <tr>   
                               <td  valign="top"><img  src="image/down.gif"  width="10"  height="31"onmouseup="movover();movstar(1,20)"  class="opacity"  onmousedown="movover();movstar(3,2)"  onmouseover="movstar(1,20);o_down(this)"  onmouseout="movover();o_up(this)"  
                                               alt="鼠标点住不放加速移动"></td>  
                           </tr>  
                           <tr>

TOP

发新话题