我有一个 JQuery 函数,可以根据您要查看的幻灯片更改显示的内容。您单击三个圆圈之一,然后它会发生变化,有点像幻灯片。但是,唯一的问题是您必须单击其中一个圆圈才能更改内容。我还想有一个 JQUERY 函数,它可以使所需的内容自动滑过,也许还有一些动画。如何自动化我的代码?
直播网站:http ://www.getstatewideroofing.com
JSFIDDLE:http: //jsfiddle.net/h5wVc/4/
我的 JQUERY(我使用的是 1.8.2):
$(document).ready(function() {
$('.circle1').click(function () {
$('#slideshow img').replaceWith('<img src="images/roof.png"/>');
$('#slideshow-bottom p').replaceWith('<p> Some text </p>');
});
$('.circle2').click(function () {
$('#slideshow img').replaceWith('<img src="https://sphotos-a.xx.fbcdn.net/hphotos-
ash4/313870_456560374416571_509297138_n.jpg"/>');
$('#slideshow-bottom p').replaceWith('<p>Some text</p>');
});
$('.circle3').click(function () {
$('#slideshow img').replaceWith('<img src="http://i.imgur.com/1hxQNiw.jpg"/>');
$('#slideshow-bottom p').replaceWith('<p>Some text</p>');
});
});