Jump to content
  • 0

Запрет на изменение размеров блока


Temiks
 Share

Question

Здравствуйте.
Есть три картинки.

При клике на первую картинку она увеличивается в размерах. (получилось)

При клике на вторую картинку - первая картинка уменьшается в размерах. (получилось)
При клике на третью картинку - первая картинка запоминает свой размер и больше не изменяется. (не получилось)

Как  можно реализовать запрет на изменение блока только с помощью JQ? (Задача по JQ)
Я думаю нужно сделать при клике на 3 картинку свойства !important, но не получается написать его с помощью JQ.
...

<img src="img.jpg" alt="" class="img-circle" id="img-1" ><img src="img.jpg" alt="" class="img-circle" id="img-2"><img src="img.jpg" alt="" class="img-circle" id="img-3">
$('#img-1').click(  function() {    $(this).animate({      height: 250,      width: 250    }, 1000);  });$('#img-2').click(  function() {    $('#img-1').animate({      height: 150,      width: 150    }, 1000);  });$('#img-3').click(  function() {    var gHeight = $('#img-1').height();    var gWidth = $('#img-1').width();     // а тут нужно дописать то, чего я не знаю  });
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy