歪斜的背景图像动画

时间:2016-10-26 10:23:13

标签: css jquery-animate skew

我目前正致力于http://mijnwebsitebestellen.be/index.php。 当您将鼠标悬停在“活动地点”上时你可以看到第一个黑&的宽度白色条带发生变化,但在动画过程中背景图像不会倾斜。

以下是我用于动画的代码片段:



$( 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);
    });
});




我添加了问题的屏幕截图。enter image description here

这是否有解决方法?

由于

0 个答案:

没有答案