WordPressテーマでOwlCarouselを実装しようとしています。ここでは、ブートストラップを使用し、OwlCarouselアセットをインポートしました。OwlCarouselがブートストラップ3で表示されない
ロングストーリーショート:私はOwlCarousel 2を試しましたが、動作しませんでした。私はおそらく、私がこのWordPressのインスタンスで使用するいくつかのものと競合があると思った。だから私はOwlCarouselを試してみました。
すべてのsingle.phpページで、たとえばhttp://www.einfall7.ch/beta/manufaktur/tischkorpus-m-goetti/の場合は、メニューのすぐ下にフローカルーセルが必要です。私のブラウザは何も表示しません。問題がどこにあるのか分かりません。
目標は、記事で定義されている画像の完全な高さカルーセルを表示することです。
EDIT: 私の使用コード:
$(document).ready(function() {
$("#owl-demo").owlCarousel({
navigation: true, // Show next and prev buttons
slideSpeed: 300,
paginationSpeed: 400,
singleItem: true
// "singleItem:true" is a shortcut for:
// items : 1,
// itemsDesktop : false,
// itemsDesktopSmall : false,
// itemsTablet: false,
// itemsMobile : false
});
});
#owl-demo .item img {
display: block;
width: 100%;
height: auto;
}
<html>
<head>
<!-- Important Owl stylesheet -->
<link rel="stylesheet" href="<?php echo esc_url(get_template_directory_uri()); ?>/owl/owl.carousel.css">
<!-- Default Owl Theme -->
<link rel="stylesheet" href="<?php echo esc_url(get_template_directory_uri()); ?>/owl/owl.theme.css">
<!-- Include Owl js plugin -->
<script src="<?php echo esc_url(get_template_directory_uri()); ?>/owl/owl.carousel.js"></script>
</head>
<body>
<div id="owl-demo" class="owl-carousel owl-theme">
<div class="item"><img src="http://www.einfall7.ch/beta/wp-content/themes/einfall7-2016/images/ref-einfall7-gr.jpg" alt="The Last of us"></div>
<div class="item"><img src="http://www.einfall7.ch/beta/wp-content/themes/einfall7-2016/images/ref-einfall7-gr.jpg" alt="GTA V"></div>
<div class="item"><img src="http://www.einfall7.ch/beta/wp-content/themes/einfall7-2016/images/ref-einfall7-gr.jpg" alt="Mirror Edge"></div>
</div>
</body>
</html>
:あなたは、このスクリプトを含めるようにサンプル関数である
これは、owlCarouselは関数エラーではないことを示しています。ので、jqueryの競合の問題.. –
@ Vidhiコードを追加しました、ありがとう。 – michael