鼠标移动生成多彩泡泡效果
代码语言:html
所属分类:悬停
代码描述:鼠标移动生成多彩泡泡效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { margin: 0; padding: 0; } body { overflow: hidden; background: #ecf0f3; height: 100vh; } .logo { font-family: "Montserrat", sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #000; font-size: 50px; } span { height: 50px; width: 50px; border-radius: 50%; position: absolute; pointer-events: none; background: #55b9f3; transform: translate(-50%, -50%); animation: blow 4s linear infinite; } @keyframes blow { 0% { transform: translate(-50%, -50%); opacity: 1; filter: hue-rotate(0deg); } 100% { tra.........完整代码请登录后点击上方下载按钮下载查看
网友评论0