miccom Posted May 13, 2016 Share Posted May 13, 2016 Cześć. Chciałbym usunąć efekt otwieranego okienka z przyciskiem DO KOSZYKA podczas najechania kursorem myszki na okno product-container. Gdzie znajdę pliki obsługujące ten element? Proszę o pomoc. Link to comment Share on other sites More sharing options...
0 miccom Posted May 13, 2016 Author Share Posted May 13, 2016 W global.js wyszukałem elementy mouseenter i mouseleave i zakomentowałem. $(document).off('mouseenter').on('mouseenter', '.product_list.grid li.ajax_block_product .product-container', function(e){ if (screenLg) { var pcHeight = $(this).parent().outerHeight(); var pcPHeight = $(this).parent().find('.button-container').outerHeight() + $(this).parent().find('.comments_note').outerHeight() + $(this).parent().find('.functional-buttons').outerHeight(); $(this).parent().addClass('hovered').css({'height':pcHeight + pcPHeight, 'margin-bottom':pcPHeight * (-1)}); $(this).find('.button-container').show(); } }); $(document).off('mouseleave').on('mouseleave', '.product_list.grid li.ajax_block_product .product-container', function(e){ if (screenLg) { $(this).parent().removeClass('hovered').css({'height':'auto', 'margin-bottom':'0'}); $(this).find('.button-container').hide(); } }); Teraz już ten efekt nie działa, ale czy to właściwe założenie? Link to comment Share on other sites More sharing options...
Question
miccom
Cześć.
Chciałbym usunąć efekt otwieranego okienka z przyciskiem DO KOSZYKA podczas najechania kursorem myszki na okno product-container.
Gdzie znajdę pliki obsługujące ten element?
Proszę o pomoc.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now