如何使用响应式图像进行中心缩放而不影响图像大小?

时间:2016-09-30 14:59:09

标签: javascript jquery html css image

我将jquery和css函数放在一起,在鼠标悬停时放大和缩小图像,同时保持约束框大小不变。我发现这是一个例子,并根据我的意愿编辑了更多。

演示在这里:https://jsfiddle.net/2fken8Lg/1/

以下是代码:

JS:

 $('.zoom img').on({
   mouseover: function() {
     var $scale = 1.5;
     if (!$(this).data('w')) {
       var $w = $(this).width();
       var $h = $(this).height();
       $(this).data('w', $w).data('h', $h);
     }
     $(this).stop(true).animate({
       width: $(this).data('w') * $scale,
       height: $(this).data('h') * $scale,
       left: -$(this).data('w') * ($scale - 1) / 2,
       top: -$(this).data('h') * ($scale - 1) / 2
     }, 'fast');
   },
   mouseout: function() {
     $(this).stop(true).animate({
       width: $(this).data('w'),
       height: $(this).data('h'),
       left: 0,
       top: 0
     }, 'fast');
   }
 });

CSS:

.zoom {
  position: relative;
  float: left;
  margin: 30px 0 0 30px;
  width: 400px;
  height: 180px;
  overflow: hidden;
  border: 1px solid #000;
}

img {
  position: absolute;
  width: 400px;
  height: 180px;
}

HTML:

<div class="zoom">
  <img src="https://www.lamborghini.com/en-en/sites/en-en/files/DAM/it/models_gateway/blocks/special.png">
</div>

使用固定的图像尺寸效果很好,但我的问题是如何将其扩展为响应式图像?我的网页完全基于响应性,所以我不能在任何地方都有固定的CSS宽度或高度,因为它会弄乱不同的浏览器大小。无论如何要做我想要为响应式图像或没有CSS做的事情吗?

1 个答案:

答案 0 :(得分:0)

正确的方法是在css中使用转换,这个答案是由用户@Keith的建议引起的。下面的示例JS小提琴将描述如何在不影响响应性的情况下实现缩放中心外观。

演示:https://jsfiddle.net/2fken8Lg/2/

HTML:

<div class="zoom">
  <img src="https://www.lamborghini.com/en-en/sites/en-en/files/DAM/it/models_gateway/blocks/special.png">
</div>

CSS:

.zoom {
  position: relative;
  border: 1px solid #333;
  overflow: hidden;
  width: 100%;
}
.zoom img {
  max-width: 100%;

  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zoom:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}