Jump to content

Powiększenie zdjęcia


dex86

Recommended Posts

Witam.

 

Posiadam wgrany podstawowy szablon Presta 1.6

W każdym produkcie mam miniatury zdjęć jako atrybuty. Jak mogę zrobić aby po najechaniu myszką na kolor pojawiło mi się jego powiększenie? Ewentualnie jak powiększyć miniaturki kolorów? w którym dokłądnie miejscu znajduje się kod CSS odpowiedzialny za rozmiar

Link to comment
Share on other sites

możesz dodać również jakiś on mouse over effect który powiększy miniaturę :-)
coś w stylu:

$(document).ready(function(){
$("#color_to_pick_list li a").hover(function(){
$(this).animate({height: '+=50', width: '+=50'});
$(this).parent().animate({height: '+=50', width: '+=50'});
}, function(){
$(this).animate({height: '-=50', width: '-=50'});
$(this).parent().animate({height: '-=50', width: '-=50'});
});
});

powinno fajnie i płynnie zmieniać rozmiar miniatury koloru,

Link to comment
Share on other sites

  • 2 months later...
  • 6 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...