网站底部添加动态波浪动画效果
给网站底部添加动态波浪动画效果,已自适应移动端和PC端,效果如下图:
在主题根目录下页脚文件footer.php文件中合适的位置添加以下代码:
<!--底部波浪动画效果开始-->
<div class="wiiuii_layout">
<svg class="editorial" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none">
<defs>
<path id="gentle-wave" d="M-160 44c30 0
58-18 88-18s
58 18 88 18
58-18 88-18
58 18 88 18
v44h-352z"></path>
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="50" y="0" fill="#6a7277"></use>
<use xlink:href="#gentle-wave" x="50" y="3" fill="#3f4549"></use>
<use xlink:href="#gentle-wave" x="50" y="6" fill="#22292d"></use>
</g>
</svg>
</div>
<style type="text/css">
.parallax > use{animation: move-forever 12s linear infinite;}.parallax > use:nth-child(1){animation-delay: -2s;}.parallax > use:nth-child(2){animation-delay: -2s; animation-duration: 5s;}.parallax > use:nth-child(3){animation-delay: -4s; animation-duration: 3s;}@keyframes move-forever{0%{transform: translate(-90px, 0%);} 100%{transform: translate(85px, 0%);}}.wiiuii_layout{width: 100%;height: 40px;position: relative;overflow: hidden;z-index: 1;background: var(--footer-bg);}.editorial{display: block; width: 100%; height: 40px; margin: 0;}
</style>
<!--底部波浪动画效果结束-->
如果需要换成其他颜色,更改第12、13、14行颜色代码即可
共有 0 条评论