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.enter image description here

is there fix this?

thanks


Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -