使用方法
function initSparkling() {
// settings
const color = "#FFC700";
const svgPath = 'M26.5 25.5C19.0043 33.3697 0 34 0 34C0 34 19.1013 35.3684 26.5 43.5C33.234 50.901 34 68 34 68C34 68 36.9884 50.7065 44.5 43.5C51.6431 36.647 68 34 68 34C68 34 51.6947 32.0939 44.5 25.5C36.5605 18.2235 34 0 34 0C34 0 33.6591 17.9837 26.5 25.5Z';
// sparkling effect
let sparkling = function() {
$('.sparkling').each(function() {
let sparklingElement = $(this);
let stars = sparklingElement.find('.star');
// remove the first star when more than 6 stars existing
if(stars.length > 5) {
stars.each(function(index) {
if(index === 0) {
$(this).remove();
}
});
}
// add a new star
sparklingElement.append(addStar());
});
let rand = Math.round(Math.random() * 700) + 100;
setTimeout(sparkling, rand);
}
// star
let addStar = function() {
let size = Math.floor(Math.random() * 20) + 10;
let top = Math.floor(Math.random() * 100) - 50;
let left = Math.floor(Math.random() * 100);
return '<span class="star" style="top:' + top + '%; left:' + left + '%;">'
+ '<svg width="' + size + '" height="' + size + '" viewBox="0 0 68 68" fill="none">'
+ '<path d="' + svgPath + '" fill="' + color + '" /></svg></span>';
}
// execute
sparkling();
}
$(function() {
// init sparkling stars
initSparkling();
});
站长提示:
1. 苦力吧素材官方QQ群:
950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励
2K币。
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服