“owl carousel”和“colorbox”滑动动作问题

“owl carousel” and “colorbox” slide action issue

我需要有关 colorbox 和 owlcarrousel 的幻灯片放映问题的帮助

我把“colorbox”模块中的图片window 滑动了很多次。 这样做并关闭模块 window 后,如果我尝试检查图片,我会看到它变得不同并且只显示了一半的图片。 为了更容易理解,我在 YouTube 上上传了有关该问题的视频。

YouTube :https://youtu.be/uCOkgeoPSh8

商店:http://www.ks-clothing.click/men/tees-knits-and-polos/lexington-cardigan-sweater-479.html

另外,我按照下面link的建议,在脚本里放了“unbind”,但是没有动。 我该如何解决这个问题?

计算器溢出:colorbox and preventdefault not working together?

<?php
$_product = $this->getProduct();
$_helper = $this->helper('catalog/output');
?>

<div id="sync1" class="owl-carousel">
    <?php $i=0; foreach ($this->getGalleryImages() as $_image): ?>
        <?php if ($this->isGalleryImageVisible($_image)): ?>
            <div class="item">
                <a class="gallery" href="<?php echo $this->getGalleryImageUrl($_image); ?>">Colorbox</a>
<!--                <a class="cloud-zoom" rel="position: 'inside' , showTitle: false" href="--><?php //echo $this->getGalleryImageUrl($_image); ?><!--">-->
                    <img src="<?php echo $this->getGalleryImageUrl($_image); ?>" alt="<?php echo $this->escapeHtml($this->getImageLabel()) ?>" title="<?php echo $this->escapeHtml($this->getImageLabel()); ?>" />
<!--                </a>-->
            </div>
        <?php endif; ?>
        <?php $i++; endforeach; ?>
</div>

<?php if (count($this->getGalleryImages()) > 0): ?>
    <div id="sync2" class="owl-carousel">
        <?php $i=0; foreach ($this->getGalleryImages() as $_image): ?>
            <?php if ($this->isGalleryImageVisible($_image)): ?>
                <div class="item">
                    <img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(75); ?>" width="75" height="75" alt="<?php echo $this->escapeHtml($_image->getLabel()) ?>" />
                </div>
            <?php endif; ?>
            <?php $i++; endforeach; ?>
    </div>
<?php endif; ?>

<script type="text/javascript">
    //<![CDATA[
    jQuery(function ($) {
        $("a.gallery").unbind('click').colorbox({
            rel:'slideshow',
            transition:'none',
            maxWidth:'100%',
            maxHeight:"100%",
            opacity: 0.5
        });
    });
    //]]>
</script>

<script type="text/javascript">
    //<![CDATA[
    jQuery(function($) {

            var sync1 = jQuery("#sync1");
            var sync2 = jQuery("#sync2");

            sync1.owlCarousel({
                singleItem : true,
                slideSpeed : 1000,
                navigation: true,
                pagination:false,
                afterAction : syncPosition,
                responsiveRefreshRate : 200,
            });

            sync2.owlCarousel({
                items : 15,
                itemsDesktop      : [1199,10],
                itemsDesktopSmall     : [979,10],
                itemsTablet       : [768,8],
                itemsMobile       : [479,4],
                pagination:false,
                responsiveRefreshRate : 100,
                afterInit : function(el){
                    el.find(".owl-item").eq(0).addClass("synced");
                }
            });

            function syncPosition(el){
                var current = this.currentItem;
                jQuery("#sync2")
                    .find(".owl-item")
                    .removeClass("synced")
                    .eq(current)
                    .addClass("synced")
                if(jQuery("#sync2").data("owlCarousel") !== undefined){
                    center(current)
                }
            }

            jQuery("#sync2").on("click", ".owl-item", function(e){
                e.preventDefault();
                var number = jQuery(this).data("owlItem");
                sync1.trigger("owl.goTo",number);
            });

            function center(number){
                var sync2visible = sync2.data("owlCarousel").owl.visibleItems;
                var num = number;
                var found = false;
                for(var i in sync2visible){
                    if(num === sync2visible[i]){
                        var found = true;
                    }
                }

                if(found===false){
                    if(num>sync2visible[sync2visible.length-1]){
                        sync2.trigger("owl.goTo", num - sync2visible.length+2)
                    }else{
                        if(num - 1 === -1){
                            num = 0;
                        }
                        sync2.trigger("owl.goTo", num);
                    }
                } else if(num === sync2visible[sync2visible.length-1]){
                    sync2.trigger("owl.goTo", sync2visible[1])
                } else if(num === sync2visible[0]){
                    sync2.trigger("owl.goTo", num-1)
                }

            }
    });
    //]]>
</script>

您需要将 returnFocus: false 添加到颜色框选项中,如下所示:

$("a.gallery").unbind('click').colorbox({
            rel:'slideshow',
            transition:'none',
            maxWidth:'100%',
            maxHeight:"100%",
            opacity: 0.5,
            returnFocus: false
        });

焦点 return 以某种方式混淆了 Owl 滑块,这确实出乎意料。