优秀的编程知识分享平台

网站首页 > 技术文章 正文

开学了(开学了英语)

nanyue 2025-03-24 18:46:04 技术文章 3 ℃

开学了,不妨试试这串代码,HTML,CSS,JAVASCRIPT


新学期快乐!


<script>

// 添加动态创建元素

function createBaloons() {

const colors = ['#FF6B6B', '#4ECDC4', '#FFD93D', '#FF9F43'];

for(let i=0; i<8; i++){

const baloon = document.createElement('div');

baloon.style.cssText = `

width: 30px;

height: 40px;

background: ${colors[i%4]};

position: absolute;

bottom: -50px;

left: ${10 + i*12}%;

border-radius: 50%;

animation: baloonRise ${4 + i/2}s ${i*0.2}s linear forwards;

`;

document.querySelector('.scene').appendChild(baloon);

}

}


// 初始化动画

setTimeout(() => {

createBaloons();

}, 2000);

</script>

最近发表
标签列表