http://andrebrov.net/dev/carousel/
上面的链接显示了一些使用轮播的幻灯片示例。
var carousel = new $.widgets.Carousel( {
uuid : "carousel",
args : { "scrollInterval" : 600,"itemWidth":290
},
value : [
{ "title" : "Tron.Legacy",
"image" : "images/1.jpg"
},
{ "title" : "Yogi Bear",
"image" : "images/2.jpg"
},
{ "title" : "The Chronicles of Narnia: The Voyage of the Dawn Treader",
"image" : "images/3.jpg"
},
{ "title" : "The Fighter",
"image" : "images/4.jpg"
},
{ "title" : "Tangled",
"image" : "images/5.jpg"
}
]
});
</script >
在上面的value属性代码中,我们给出了title和image属性。是否有可能我们可以将<div>部分作为输入而不是图像,以便我们可以将一些文本消息添加到图像或其他内容中。请帮忙。