Jump to content
  • 0

Странное мигание


DImas95
 Share

Question

Здравствуйте, на dkstudio.net/blog/new/ есть изображения для постов, которые затемняются при ховере мышки. Но после того как мышку убираешь с изображения, то на секунду изображение мигает белым цветом. Особенно заметно на темных изображениях. Не подскажете как убрать это?

Спасибо

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Вот этот код удалить:

jQuery(".box img").mouseover( function(){
jQuery(this).parent().parent().css('background','#000000');
jQuery(this).animate({opacity: "0.8"}, "0");
});
jQuery(".box img").mouseout( function(){
jQuery(this).parent().parent().css('background','none');
jQuery(this).animate({opacity: "1"}, "0");
});

Вместо него вставить:

jQuery('.box img')
.on('mouseenter', function() {
jQuery(this).stop().animate({opacity: "0.8"}, 300);
})
.on('mouseleave', function() {
jQuery(this).stop().animate({opacity: "1"}, 300);
})
.parent().parent().css('background','#000'); //вот эту строку лучше удалить и прописать бэкграунд у нужного элемента в css

Link to comment
Share on other sites

  • 0

Спасибо за совет, но у меня не работает данный код...

Вот то что я вставил внутрь:


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

но картинка даже не затемняется. Все ли правильно я прописал, просто я не очень владею jQuery.

Edited by DImas95
Link to comment
Share on other sites

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