当前位置: 首页 > news >正文

CSS\JS实现页面背景气泡logo上浮效果

效果图:

单容器显示气泡:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Bubble Logo Animation</title></head>
<body><div class="bubble-container"><!-- 气泡将会动态添加到这里 --></div></body><style>
body, html {margin: 0;padding: 0;width: 100%;height: 100%;overflow: hidden;background-color: #ffffff; /* 背景颜色 */display: flex;justify-content: center;align-items: center;
}.bubble-container {position: relative;width: 100%;height: 100%;
}.bubble {position: absolute;bottom: -50px; /* 从页面底部开始 */width: 100px;height: 100px;opacity: 0.8;animation: floatUp 10s infinite;
}.bubble img {width: 100%;height: 100%;object-fit: contain;
}/* 气泡上浮动画 */
@keyframes floatUp {0% {transform: translateY(0) scale(1);opacity: 1;}100% {transform: translateY(-100vh) scale(1.2);opacity: 0;}
}</style><script>
const bubbleContainer = document.querySelector('.bubble-container');function createBubble() {const bubble = document.createElement('div');bubble.className = 'bubble';bubble.style.left = `${Math.random() * 100}vw`; // 随机水平位置bubble.style.animationDuration = `${5 + Math.random() * 5}s`; // 随机动画时长bubble.innerHTML = `<img src="https://img-home.csdnimg.cn/images/20201124032511.png" alt="Logo">`;bubbleContainer.appendChild(bubble);// 动画结束后移除气泡bubble.addEventListener('animationend', () => {bubble.remove();});
}// 定期生成新的气泡
setInterval(createBubble, 1000);</script>
</html>

全屏显示气泡:

<div class="one" style="width: 100%;height: 300px;background-color: pink;"></div><div class="bubble-container"><!-- 气泡将会动态添加到这里 --></div><style>.one {width: 100%;height: 300px;background-color: pink;z-index: 1;position: relative;}/* 覆盖整个页面的气泡容器 */.bubble-container {position: fixed; /* 使容器固定在页面上 */top: 0;left: 0;width: 100%;height: 100%;pointer-events: none; /* 确保气泡不影响页面其他内容的交互 */z-index: 9999; /* 将气泡放在最前面 */}.bubble {position: absolute;bottom: -50px;width: 75px;height: 75px;opacity: 0.5;animation: floatUp 10s infinite;}.bubble img {width: 100%;height: 100%;object-fit: contain;}/* 气泡上浮动画 */@keyframes floatUp {0% {transform: translateY(0) scale(1);opacity: 0.8;}100% {transform: translateY(-100vh) scale(1.2);opacity: 0;}}</style><script>
const bubbleContainer = document.querySelector('.bubble-container');function createBubble() {const bubble = document.createElement('div');bubble.className = 'bubble';bubble.style.left = `${Math.random() * 100}vw`; // 随机水平位置bubble.style.animationDuration = `${5 + Math.random() * 5}s`; // 随机动画时长bubble.innerHTML = `<img src="https://img-home.csdnimg.cn/images/20201124032511.png" alt="Logo">`;bubbleContainer.appendChild(bubble);// 动画结束后移除气泡bubble.addEventListener('animationend', () => {bubble.remove();});
}// 定期生成新的气泡
setInterval(createBubble, 5000);</script>


http://www.mrgr.cn/news/9201.html

相关文章:

  • ubuntu20.04源码编译安装qemu(qemu8.2)
  • 01 BlockChain--
  • ReactRouter6快速入门教程
  • webdriver 反爬虫 (selenium反爬虫) 绕过
  • 手机谷歌浏览器怎么用
  • 【HuggingFace Transformers】BertSdpaSelfAttention源码解析
  • C语言占领游戏
  • 无人机PX4飞控 | 电源系统详解与相关代码
  • C语言文件迷宫
  • ThreeJs学习-层级模型
  • 前端面试宝典【设计模式】【5】
  • 短剧系统搭建:从零搭建高效创意内容平台教程,源码分享+正版片源授权指南
  • RING总线(环形总线)Intel大小核的由来
  • 『功能项目』禁止射线穿透行为【05】
  • SSRF漏洞(一)
  • 设计模式-结构型模式-代理模式
  • C++ | Leetcode C++题解之第352题将数据流变为多个不想交区间
  • 使用miniconda构建数据科学环境
  • [Linux][软件]CentOS 系统部署 RabbitMQ
  • AI可预测地震,科技的“预知未来”?