我正在使用 CloudZoom 来放大图像。
我在 div 中有一张图片
.product_large_image {width:370px;height:370px;background:#fff;border-radius:185px;text-align:center;overflow:hidden;box-shadow:0px 0px 20px rgba(0,0,0,0.1);}
我有overflow:hidden
,这是因为这会产生漂亮的圆形效果。
但问题是,当我将图像悬停并缩放时,CloudZoom 会在主图像旁边显示大图像,但美国更大的图像缩放在 div 女巫说overflow: hidden
,它也隐藏了缩放效果图像。
有没有机会使该缩放图像可见?也许与!重要。
我认为我们以该图像为目标并写一些我们可以做到的东西?
<div class="product_large_image">
<a href="img/index/products/01.jpg" rel="adjustX: 30, adjustY: -4" class="cloud-zoom " id="zoom1" style="display: block !important;">
<img src="img/index/products/01_small.jpg" alt="" title="Procut zoom" >
</a>
</div>
<ul class="pr_gallery">
<li>
<a href="img/index/products/01.jpg" class="cloud-zoom-gallery" rel="useZoom: 'zoom1', smallImage: 'img/index/products/01_small.jpg'">
<img src="img/index/products/01.jpg" alt="01">
</a>
</li>
<li>
<a href="img/index/products/02.jpg" class="cloud-zoom-gallery" rel="useZoom: 'zoom1', smallImage: 'img/index/products/02_small.jpg'"><img src="img/index/products/02.jpg" alt="02">
</a>
</li>
<li>
<a href="#"><img src="img/index/products/03.jpg" alt="03"></a>
</li>
</ul>