HTML代码: 复制代码 代码如下: 1 2 3 4 JS代码: 复制代码 代码如下: <BR>$(document).ready(function(){ <BR>$("#box0").click(function(){ <BR>//$("#imgCon").slideUp(4200); <BR>$("#imgCon").animate({top:'-225px'},"slow"); <BR>}); <BR>$("#box1").click(function(){ <BR>$("#imgCon").animate({top:'-450px'},"slow"); <BR>}); <BR>$("#box2").click(function(){ <BR>$("#imgCon").animate({top:'-675px'},"slow"); <BR>}); <BR>$("#box3").click(function(){ <BR>$("#imgCon").animate({top:'-900px'},"slow"); <BR>}); <BR>}); <BR> CSS:代码: 复制代码 代码如下: <BR>.box{ <BR>width:40px; <BR>height:20px; <BR>border:1px solid #000; <BR>float:left; <BR>cursor:pointer; <BR>} <BR>#imgCon img{ <BR>display:block; <BR>padding:0; <BR>margin:0; <BR>width:360px; <BR>height:225px; <BR>} <BR>