テーマからコードをコピーしました。このコードは、ボタンをクリックすると動作します。ボタンをクリックすると、1つの画像が左にスクロールします。このスクロールを自動的に左にしたいのですが、クリックすることもできます。ここにjqueryコードがあります。自動スクロールにするにはどうしたらいいですか?クリックしないでJqueryを自動スクロールする
あなたは、その後、私はフクロウカルーセルを使用していた、そしてあなたもフクロウカルーセルを使用している場合、与えたウェブサイトを:私はあなたが提供するウェブサイトで知らされた後
<script type="text/javascript">
jQuery(document).ready(function ($) {
"use strict";
$(window).load(function() {
$("#frontend_customizer").animate({left: -233}, 300);
});
$("#frontend_customizer_button").live('click', function() {
if($("#frontend_customizer").hasClass('open')){
$("#frontend_customizer").animate({left: -233}, 300);
$("#frontend_customizer").removeClass('open');
}else{
$("#frontend_customizer").animate({left: 0}, 300);
$("#frontend_customizer").addClass('open');
}
});
$('#wrapper').click(function (kik) {
if (!$(kik.target).is('#frontend_customizer, #frontend_customizer *') && $('#frontend_customizer').is(':visible')) {
$("#frontend_customizer").animate({left: -233}, 300);
$("#frontend_customizer").removeClass('open');
}
});
$("#customizer_reset").live("click", function() {
$.removeCookie('header_layout', {path: '/'});
$.removeCookie('navigation_type', {path: '/'});
$.removeCookie('skin_color', {path: '/'});
location.reload();
});
var default_logo = $(".main_menu .logo img").attr("src");
if ($.cookie('header_layout')) {
$("body").addClass($.cookie('header_layout'));
}
if ($.cookie('navigation_type') && $.cookie('navigation_type') == 'sticky_header') {
$("body").addClass('sticky_header');
}else{
$("body").removeClass('sticky_header');
}
if($("body").hasClass("sticky_header")){
$("#navigation_type").addClass("active");
}
$("#navigation_type").live("click", function() {
if ($(this).hasClass('active')) {
$(this).removeClass('active');
$("body").removeClass('sticky_header');
$.cookie('navigation_type', 'static_header', {expires: 7, path: '/'});
} else {
$(this).addClass('active');
$("body").addClass('sticky_header');
$.cookie('navigation_type', 'sticky_header', {expires: 7, path: '/'});
}
});
if($("body").hasClass("sticky_header")){
$("#navigation_type").addClass("active");
}
if ($("body").hasClass("header_type_4")) {
$("select[name='header_layout'] option[value='header_type_4']").attr("selected", "selected");
$(".main_menu .logo img").attr("src", '<?php echo get_template_directory_uri(); ?>/assets/images/temp/logo_white.svg');
} else if ($("body").hasClass("header_type_3")) {
$("select[name='header_layout'] option[value='header_type_3']").attr("selected", "selected");
$(".main_menu .logo img").attr("src", '<?php echo get_template_directory_uri(); ?>/assets/images/temp/logo_white.svg');
} else if ($("body").hasClass("header_type_2")) {
$("select[name='header_layout'] option[value='header_type_2']").attr("selected", "selected");
$(".main_menu .logo img").attr("src", '<?php echo get_template_directory_uri(); ?>/assets/images/temp/logo_white.svg');
}
$("select[name='header_layout']").live("change", function() {
$("body").removeClass("header_type_1 header_type_2 header_type_3 header_type_4");
$("body").addClass($(this).val());
if ($(this).val() != 'header_type_1') {
$(".main_menu .logo img").attr("src", '<?php echo get_template_directory_uri(); ?>/assets/images/temp/logo_white.svg');
} else {
$(".main_menu .logo img").attr("src", default_logo);
}
$.cookie('header_layout', $(this).val(), {expires: 7, path: '/'});
});
if ($.cookie('skin_color')) {
$("body").addClass($.cookie('skin_color'));
}
if($("body").hasClass("skin_olive")){
$("#skin_color #skin_olive").addClass("active");
}else if($("body").hasClass("skin_green")){
$("#skin_color #skin_green").addClass("active");
}else if($("body").hasClass("skin_grey")){
$("#skin_color #skin_grey").addClass("active");
}else if($("body").hasClass("skin_orange")){
$("#skin_color #skin_orange").addClass("active");
}else{
$("#skin_color #skin_default").addClass("active");
}
$("#skin_color span").live('click', function() {
$.cookie('skin_color', $(this).attr("id"), {expires: 7, path: '/'});
$("#skin_color .active").removeClass("active");
$(this).addClass("active");
$("body").removeClass("skin_olive skin_grey skin_green skin_default skin_orange");
$("body").addClass($(this).attr("id"));
});
});
</script>
http://hopehousemiami.com/をあなたは、下の画像を見ることができるスクロール私は自動的に左にスクロールしたい。 – UnKnown
あなたが私に与えたウェブサイトはOwl Carouselを使用しています。あなたもOwlを使用している場合は、単純ですが、autoplay:trueを追加するだけです。私はあなたのことを示すために上記の私の答えを変更します。 – user3685578