资源描述:一款纯javascript实现的文本文字动画特效,页面带有随机闪烁的星星背景动画,happy new year 2024漂浮上下移动。
js+css3全屏2024新年快乐动画特效(共3个文件)
使用方法
const stars = () => {
const count = 200;
const section = document.querySelector('.section');
let i = 0;
while (i < count) {
// 在内存中创建一个新的空元素对象,如i或是div
const star = document.createElement('i');
// 定义变量x和y :通过Math.random()方法随机的使星星出现在不同位置,当然星星的定位要在文档显示区内
const x = Math.floor(Math.random() * window.innerWidth);
const y = Math.floor(Math.random() * window.innerHeight);
const size = Math.random() * 4;
// 让星星始终会在网页最左最顶端出现,通过想x和y的定位,我们要让它出现在页面各个不同的位置
star.style.left = x + 'px';
star.style.top = y + 'px';
// 利用Math.random()这个方法来随机取星星的大小:为每颗星星设置随机的宽高范围为[0,5)
star.style.width = 1 + size + 'px';
star.style.height = 1 + size + 'px';
const duration = Math.random() * 2;
// 设置持续时间
// js中除了减法计算之外,不允许随便写-。因为会混淆。所以,DOM标准规定,所有带-的css属性名,一律去横线变驼峰
// css属性animation-duration,在js中改写为驼峰形式:animationDuration
star.style.animationDuration = 2 + duration + 's';
// 设置延迟
star.style.animationDelay = 2 + duration + 's';
// 将新元素添加到DOM树:把新创建的节点追加到父元素下所有直接子元素的结尾
section.appendChild(star);
i++;
}
}
// 调用函数
stars();
站长提示:
1. 苦力吧素材官方QQ群:
950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励
2K币。
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服