微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

owl carousel 中的 href 无法在实时服务器上运行

如何解决owl carousel 中的 href 无法在实时服务器上运行

我使用 owl carousel显示一些图像和内容内容上的 On Click重定向到相应的页面。它不能在实时服务器上运行,但在本地主机上运行良好。

<div class="owl-carousel">
    <div class="item">
        <div class="product" style="border: #e1e1e1 solid 1px;">
            <div class="volunteer-thumb"> 
                <img src="https://fiverr-res.cloudinary.com/images/q_auto,f_auto/gigs/191485348/original/3445ddeeb76be7b8279be096c0912765a9ddd292/design-promotional-magazine-ad-newspaper-ad-flyer-or-print-advert-3d3a.jpg" alt="" class="img-fullwidth img-responsive" style="width:250px; height:150px;">
            </div>
            <div class="bg-lighter text-center pt-2">
                <div class="schedule-details clearfix p-5 pt-5">
                    <h5 class="font-12 title text-uppercase mt-5 mb-5">
                        <a href="https://google.com">Print</a>
                    </h5>
                </div>
            </div>
        </div>  
                
    
        <script>
            $('.owl-carousel').owlCarousel({
                loop:true,margin:10,autoplay:true,nav:true,navText: [
                    '',''
                ],responsive:{
                    0:{
                        items:1
                    },600:{
                        items:3
                    },1000:{
                        items:5
                    }
                }
            })
        </script>

    </div>
</div>

这是该代码的jsfiddlehttps://jsfiddle.net/xjrdug08/2/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。