防止“悬停缩放”插件显示缩放的img(或将类添加到img div)

问题描述 投票:1回答:2

Hover Zoom chrome ext。在悬停时加载原始大小的pic。

对于我的图像,我在CSS中调整了大小,因为它为我节省了Photoshop的裁剪步骤。 <img src ='.. images / title.jpg'width ='300px'height ='auto'/>

但对于使用Hover Zoom的用户,会添加一个新类,并将加载原始大小。

有没有办法防止悬停缩放工作?同时保持CSS调整大小。提前致谢。

css image resize hover zoom
2个回答
2
投票

你可以像这样添加css:

img {
        width:250px;
        height:61px;
      }
img:hover {
        width:100%;
        height:100%;
      }

0
投票

我尝试了答案,但它对我的方案不起作用。在我的情况下,我强行隐藏元素 - 虽然id可能会发生变化,等等太糟糕了,没有更好的方法(我发现)

#hzImg {
    display: none !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.