下拉图标呼吸效果制作

下拉图标呼吸效果在手机网站中用的比较多,可以很形象的提示用户往下有更多内容。下面是几行简单的代码~

//下拉图标呼吸效果

var setTime;

function setTimeFun() {

    $(".mdmobile-first-bottom-bottom").animate({

        'opacity': 0.2

    },800,function(){

        $(".mdmobile-first-bottom-bottom").animate({

            'opacity': 1

        },800);

    })

}



setTime = setInterval(function(){

    setTimeFun();

}, 1600);

setTimeFun();

 

你可能感兴趣的:(图标)