css - skewed background image animation -
i'm working on http://mijnwebsitebestellen.be/index.php. when hover on 'event location' can see width of first black & white band changes, background image not skewed during animation.
here snippet of code use animation:
$( document ).ready(function() { $('.deel1-link').mouseover(function(){ $('.deel1').animate({width:"600px"},400); $('.delen .col-sm-4:nth-child(1)').animate({width:"600px"},400); }); $('.deel1-link').mouseleave(function(){ $('.deel1').animate({width:"50px"},400); $('.delen .col-sm-4:nth-child(1)').animate({width:"50px"},400); }); });
i added screenshot of problem.
is there fix this?
thanks
Comments
Post a Comment