博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单的js特效,背景圆球滚动,类似电脑屏幕锁屏气球
阅读量:5960 次
发布时间:2019-06-19

本文共 1769 字,大约阅读时间需要 5 分钟。

html

css

 

.banner{width:100%;height:665px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;padding-top:86px;background-color:#ff3d00;position:relative;color:#fff;overflow:hidden}.banner .dot{background:url(http://dn-acac.angelcrunch.com/v1/root/dot.png) center center no-repeat;background-size:100%;border-radius:50%;position:absolute;z-index:1;transition:all 8s ease-in-out;-webkit-transition:all 8s ease-in-out;-moz-transition:all 8s ease-in-out;-o-transition:all 8s ease-in-out}.dot0{width:400px;height:400px;opacity:.5;left:10px;top:250px}.dot1{width:300px;height:300px;opacity:.5;left:200px;top:200px}.dot2,.dot3{width:200px;height:200px}.dot2{opacity:.2;left:100px;top:100px}.dot3{opacity:.3;left:500px;top:200px}.dot4{opacity:.2;left:800px;top:300px}.dot4,.dot5{width:150px;height:150px}.dot5{opacity:.4;left:1100px;top:400px}.dot6{width:120px;height:120px;opacity:.2;left:1200px;top:450px}.dot7{width:100px;height:100px;opacity:.3;right:100px;top:500px}.dot8{width:150px;height:150px;opacity:.2;right:200px;top:100px}.dot9{width:100px;height:100px;opacity:.2;right:300px;top:500px}

 

js

 

$(function() {  function r(a, b) {    return a > b ? 0 : Math.round(Math.random() * (b - a) + a);   }  function dots() {    max_y = $(".banner").height();    max_x = $(".banner").width();    $('.dot').each(function() {      $(this).css({                 'top': r(-100, 765),                 'left': r(200, 1440),                 'opacity': r(2, 6) / 10,                 });     });    }   dots();   t = setInterval(dots, 8000); })

 

转载于:https://www.cnblogs.com/congfeicong/p/10029108.html

你可能感兴趣的文章
推荐几款工具
查看>>
深入浅出: 大小端模式
查看>>
深入浅出: Java回调机制(异步)
查看>>
Aliyun OSS Nginx proxy module(阿里云OSS Nginx 签名代理模块)
查看>>
linux中的mdev机制
查看>>
use zfs snapshot rollback postgresql's primary to old status in PG HA
查看>>
btrfs 使用指南 - 1 概念,创建,块设备管理,性能优化
查看>>
Android Studio 3.0 上 Gradle 改动
查看>>
[Vue]1-5. Vue.js核心知识之组件化
查看>>
链表(二)
查看>>
重学前端之 让人心态爆炸的this到底是个什么玩意
查看>>
阿里云服务器ECS 3年 279元
查看>>
lamp组合详解
查看>>
Android 自定义View基础(一)
查看>>
新锐时代(北京)网络科技有限公司拖欠工资
查看>>
(四)构建springmvc+mybatis+dubbo分布式平台-maven代码结构
查看>>
去掉键盘的方式
查看>>
css代码规范
查看>>
深入理解Spring系列之三:BeanFactory解析
查看>>
推荐几款超好用的Android Stuido插件
查看>>