页面漂浮物代码

有时候 会让屏幕中 出现一些漂浮的小图片 

eg:这个就是钱袋 漂浮往下掉的

代码:

function playFloatBox(content, type) {

    if (!content) return;
    var bom = type === 1 ? '<span><i class="fa fa-' + content + '"></i></span>' : '<img class="not-js-style" src="' + content + '">';
    var floatBox = $('.widget-float-box');
    for (var i = 0; i < 20; i++) {
        floatBox.append('<li>' + bom + '</li>')
    }
    var param = {
        delay: [400, 12000],
        left: [0, 90],
        duration: [2000, 20000],
        width: [1, 2]
    };
    floatBox.find('li').each(function (index) {
        var i = index + 1;
        var delay = Math.floor(param.delay[0] + Math.random() * (param.delay[1] - param.delay[0])) + Math.floor(200 + Math.random() * (200 - 50));
        var left = Math.floor(param.left[0] + Math.random() * (param.left[1] - param.left[0]));
        var duration = Math.floor(param.duration[0] + Math.random() * (param.duration[1] - param.duration[0])) + Math.floor(1000 + Math.random() * (1000 - 200));
        var width = Math.floor(param.width[0] + Math.random() * (param.width[1] - param.width[0] ));
        floatBox.find('li').eq(i).css({
            left: left + '%',
            animationDelay: delay + "ms",
            animationDuration: duration + "ms",
            width: width + 'rem',
            fontSize: width + 'rem'
        });
    });

}


需要修改的地方    var floatBox = $('.widget-float-box');   这里的class或者id 改成你的
 执行函数 :playFloatBox('http://img.cdn.jisutp.com/common/float/5.png',2);
        第一个参数是 图片的地址   第二个参数 你可以百度

不懂得可以留言
帮到你的话 可以打赏






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lar_slw

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值