环球速读:html流星雨代码怎么实现

时间:2023-01-04 15:20:46       来源:PHP中文网

本教程操作环境:Windows10系统、HTML5版本、Dell G3电脑。


(相关资料图)

html流星雨代码怎么实现?

动态流星雨制作代码分享(可直接复制)

流星雨制作

效果图(流星带颜色的,截图没显示):

今天在书上,看到了一个不错的流星雨制作案例,感觉挺好看,话不多说上代码喜欢可以收藏。

代码如下:

html代码:

漫天流星雨
一起来看流星雨吧! -- (●ˇ∀ˇ●)
登录后复制

css代码:

:root {--background-color: #2c3e50;--border-color: #7591AD;--text-color: #34495e;--color1: #ec3e27;--color2: #fd79a8;--color3: #0984e3;--color4: #00b894;--color5: #fdcb6e;--color6: #e056fd;--color7: #F97F51;--color8: #BDC581;}* {margin: 0;padding: 0;}html {font-size: 14px;}body {width: 100vw;height: 100vh;background-color: var(--background-color);display: flex;justify-content: center;align-items: center;/* font-family: "Times New Roman", Times, serif; */}.channel {position: absolute;width: 80%;text-align: center;top: 50%;left: 50%;transform: translate(-50%, -200px);font-size: 30px;font-weight: bold;color: #fff;z-index: 999;}.container {position: relative;width: 100vw;height: 100vh;background-color: #000;overflow: hidden;display: flex;justify-content: center;align-items: center;perspective: 800px;/* perspective-origin: left bottom; */transform-style: preserve-3d;}.line {position: absolute;width: 200px;height: 3px;border-radius: 3px;/* background-color: #fff; */background-image: linear-gradient(to right, var(--color), #ffffff50, transparent);animation: down 1s linear infinite both;animation-delay: calc(var(--d) * 0.3s);}.line::before,.line::after {position: absolute;content: "";width: inherit;height: inherit;background-image: inherit;}.line::before {filter: blur(5px);}.line::after {filter: blur(10px);}@keyframes down {0% {transform: translateY(calc(var(--z) * 60px)) translateZ(calc(var(--z) * 100px)) rotate(-45deg) translateX(calc(var(--x) * 100px));}100% {transform: translateY(calc(var(--z) * 60px))translateZ(calc(var(--z) * 100px)) rotate(-45deg) translateX(calc(var(--x) * -100px));}}.channel{background: linear-gradient(to right,red,blue);-webkit-background-clip: text;color: transparent;}
登录后复制

快去试试吧!

推荐学习:《HTML视频教程》

以上就是html流星雨代码怎么实现的详细内容,更多请关注php中文网其它相关文章!

关键词: 相关文章 可以改变 感觉挺好