表示するスライドに基づいて表示されるコンテンツを変更する JQuery 関数があります。3 つの円のうちの 1 つをクリックすると、スライドショーのように変化します。ただし、唯一の問題は、コンテンツを変更するために円の 1 つをクリックする必要があることです。アニメーションを使用して、目的のコンテンツを自動的にスライドさせる JQUERY 関数も必要です。コードを自動化するにはどうすればよいですか?
ライブ Web サイト: 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>');
});
});