如何在不移动其他元素的情况下增加jquery中的img大小?

时间:2018-01-03 19:36:46

标签: javascript jquery html css

我遇到过这个问题,我遇到了两个在mousein上动画的图像,但是一旦img动画,它会移动旁边的另一个img。我希望img增加高度和宽度,同时对其他imgs没有影响,就像我们在在线画廊中看到的那样。我目前的进展如下 HTML

    <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <title>Document</title>
  <style>

  ul li {
 list-style-type: none;
 background-color: "red";
 display: inline;
}

li img {
 cursor: pointer;
 display: inline-block;
}


  </style>
</head>
<body>
  <ul>
  <li>
    <img src="https://secure.gravatar.com/avatar/c370cf7247c52385734adad9f4fc755c?s=160&d=retro&r=pg" alt="">
  </li>
<li>
    <img src="https://www.klickypedia.com/wp-content/images/facebook.png" alt="">
  </li>

</ul>
<script>
var $li = $('ul li img');

$li.mouseover(function(){
var currentHeight = $(this).height();
$(this).animate({
  height: currentHeight*1.3
},50,function(){
  $(this).mouseout(function(){
    $(this).animate({
      height: currentHeight
    },50)
  }).stop();
})
})

</script>
</body>
</html>

这是a fiddle demonstrating what I've done so far

0 个答案:

没有答案