Jump to content
  • 0

Изменение скрипта в зависимости от класса


DImas95
 Share

Question

Здравствуйте, на сайте при наведении на картинку, изображение меняет прозрачность с 1 на 0.8. А вот для текста с цитатой, который находится в той же обертке что и картинка, этого не должно быть. Тоесть нужно что бы прозрачность менялась только для изображений, и оставалась неизменной для текста.

Мне кажется тут что то простое должно решить проблему, но в скриптах не силен. Вот что я использовал для того что бы задать смену прозрачности для картинок


<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function( ){
jQuery('.rel')
.on('mouseenter', function() {
jQuery(this).stop().animate({opacity: "0.8"}, 300);
})
.on('mouseleave', function() {
jQuery(this).stop().animate({opacity: "1"}, 300);
})
});
</script>

Спасибо заранее

Link to comment
Share on other sites

1 answer 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