今天在网上找到一款回旋滚动效果,拿出来和大家一起分享。先上效果图: html 代码: 复制代码 代码如下: jquery-roundabout <BR>*{padding:0;margin:0;} <BR>body{font:24px tahoma;} <BR>ul{list-style:none;margin:100px auto 0;width:500px;height:200px;} <BR>li{line-height:200px;height:200px;width:300px;background:#ccc;text-align:center;cursor:pointer;} <BR>li.roundabout-in-focus{cursor:default;} <BR> Block 1 Block 2 Block 3 Block 4 Block 5 <BR>$(function(){ <BR>$('.roundabout').roundabout(); <BR>}); <BR> 关于 roundabout.js 的代码可以去官网上下载,这里就不写了,太长了。点击官网地址。