WordPress网站添加国庆-春节快乐灯笼特效-升级版

过节过年挂灯笼是中国的一个习俗,家里挂灯笼,自己网站也算是网家吧,当然也要挂一个了,刚好马上国庆了,给自己整一个。简单两步让你的博客网站挂上好看有又炫酷的灯笼。

这款灯笼是基于html+CSS3动画进行编写的,代码量不是很多,最初是在知更鸟博客找到了,不过很单一,大部百度都是1-两个灯笼版本这个,站长做了几个改版满足不同用户的需求,代码这里也分享一下,有喜欢的朋友拿去用,将灯笼挂在自己的博客上,增加点有趣的气氛效果。

WordPress网站添加国庆-春节快乐灯笼特效-升级版插图

1-两个灯笼版本

使用步骤:

第一步、添加HTML代码

将下面的HTML代码添加到主题页脚模板footer.php,</body>标签的上面。在此处更改自己需要的文字信息,新年快乐,新春快乐,国庆快乐等

<!-- 灯笼1 https://soujiz.com/-->
<div class="deng-box">
<div class="deng">
<div class="xian"></div>
<div class="deng-a">
<div class="deng-b"><div class="deng-t"></div></div>
</div>
<div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
</div>
</div>
<!-- 灯笼2 https://soujiz.com/-->
<div class="deng-box1">
<div class="deng">
<div class="xian"></div>
<div class="deng-a">
<div class="deng-b"><div class="deng-t"></div></div>
</div>
<div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
</div>
</div>
<!-- 灯笼1 https://soujiz.com/-->
    <div class="deng-box">
        <div class="deng">
            <div class="xian"></div>
            <div class="deng-a">
                <div class="deng-b"><div class="deng-t">节</div></div>
            </div>
            <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
        </div>
    </div>
     
    <!-- 灯笼2 https://soujiz.com/-->
    <div class="deng-box1">
        <div class="deng">
            <div class="xian"></div>
            <div class="deng-a">
                <div class="deng-b"><div class="deng-t">春</div></div>
            </div>
            <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
        </div>
    </div>
<!-- 灯笼1 https://soujiz.com/--> <div class="deng-box"> <div class="deng"> <div class="xian"></div> <div class="deng-a"> <div class="deng-b"><div class="deng-t">节</div></div> </div> <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div> </div> </div> <!-- 灯笼2 https://soujiz.com/--> <div class="deng-box1"> <div class="deng"> <div class="xian"></div> <div class="deng-a"> <div class="deng-b"><div class="deng-t">春</div></div> </div> <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div> </div> </div>

第二步、添加css样式

将下面的样式代码复制,添加到WP后台 → 外观 → 自定义 → 额外CSS 中,点击“发布”即可。网站就可以出现灯笼效果了。

如果文字大小不合适,可更改 .deng-t这个css类调整文字大小。

.deng-box {
position: fixed;
top: -40px;
left: -20px;
z-index: 1999;
}
.deng-box1 {
position: fixed;
top: -30px;
right: -20px;
z-index: 1999;
}
.deng-box1 .deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 5s infinite ease-in-out;
animation: swing 5s infinite ease-in-out;
box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
}
.deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 3s infinite ease-in-out;
animation: swing 3s infinite ease-in-out;
box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
}
.deng-a {
width: 100px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: 12px 8px 8px 10px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.deng-b {
width: 45px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: -4px 8px 8px 26px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.xian {
position: absolute;
top: -20px;
left: 60px;
width: 2px;
height: 20px;
background: #dc8f03;
}
.shui-a {
position: relative;
width: 5px;
height: 20px;
margin: -5px 0 0 59px;
-webkit-animation: swing 4s infinite ease-in-out;
-webkit-transform-origin: 50% -45px;
background: #ffa500;
border-radius: 0 0 5px 5px;
}
.shui-b {
position: absolute;
top: 14px;
left: -2px;
width: 10px;
height: 10px;
background: #dc8f03;
border-radius: 50%;
}
.shui-c {
position: absolute;
top: 18px;
left: -2px;
width: 10px;
height: 35px;
background: #ffa500;
border-radius: 0 0 0 5px;
}
.deng:before {
position: absolute;
top: -7px;
left: 29px;
height: 12px;
width: 60px;
content: " ";
display: block;
z-index: 1999;
border-radius: 5px 5px 0 0;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng:after {
position: absolute;
bottom: -7px;
left: 10px;
height: 12px;
width: 60px;
content: " ";
display: block;
margin-left: 20px;
border-radius: 0 0 5px 5px;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng-t {
font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
font-size: 1.6rem;
color: #ffa500;
font-weight: bold;
line-height: 42px;
text-align: center;
width: 25px;
margin: 0 auto;
}
.night .deng-t,
.night .deng-box,
.night .deng-box1 {
background: transparent !important;
}
@keyframes swing {
0% { transform: rotate(-10deg) }
50% { transform: rotate(10deg) }
100% { transform: rotate(-10deg) }
}
@-moz-keyframes swing {
0% { -moz-transform: rotate(-10deg) }
50% { -moz-transform: rotate(10deg) }
100% { -moz-transform: rotate(-10deg) }
}
@-webkit-keyframes swing {
0% { -webkit-transform: rotate(-10deg) }
50% { -webkit-transform: rotate(10deg) }
100% { -webkit-transform: rotate(-10deg) }
}
.deng-box {
          position: fixed;
          top: -40px;
          left: -20px;
          z-index: 1999;
      }
       
      .deng-box1 {
          position: fixed;
          top: -30px;
          right: -20px;
          z-index: 1999;
      }
       
      .deng-box1 .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 5s infinite ease-in-out;
          animation: swing 5s infinite ease-in-out;
          box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
      }
       
      .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 3s infinite ease-in-out;
          animation: swing 3s infinite ease-in-out;
          box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
      }
       
      .deng-a {
          width: 100px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: 12px 8px 8px 10px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .deng-b {
          width: 45px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: -4px 8px 8px 26px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .xian {
          position: absolute;
          top: -20px;
          left: 60px;
          width: 2px;
          height: 20px;
          background: #dc8f03;
      }
       
      .shui-a {
          position: relative;
          width: 5px;
          height: 20px;
          margin: -5px 0 0 59px;
          -webkit-animation: swing 4s infinite ease-in-out;
          -webkit-transform-origin: 50% -45px;
          background: #ffa500;
          border-radius: 0 0 5px 5px;
      }
       
      .shui-b {
          position: absolute;
          top: 14px;
          left: -2px;
          width: 10px;
          height: 10px;
          background: #dc8f03;
          border-radius: 50%;
      }
       
      .shui-c {
          position: absolute;
          top: 18px;
          left: -2px;
          width: 10px;
          height: 35px;
          background: #ffa500;
          border-radius: 0 0 0 5px;
      }
       
      .deng:before {
          position: absolute;
          top: -7px;
          left: 29px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          z-index: 1999;
          border-radius: 5px 5px 0 0;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng:after {
          position: absolute;
          bottom: -7px;
          left: 10px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          margin-left: 20px;
          border-radius: 0 0 5px 5px;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng-t {
          font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
          font-size: 1.6rem;
          color: #ffa500;
          font-weight: bold;
          line-height: 42px;
          text-align: center;
          width: 25px;  
          margin: 0 auto;  
      }
       
      .night .deng-t, 
      .night .deng-box, 
      .night .deng-box1 {
          background: transparent !important;
      }
      @keyframes swing { 
          0% { transform: rotate(-10deg) } 
          50% { transform: rotate(10deg) } 
          100% { transform: rotate(-10deg) } 
      }
       
      @-moz-keyframes swing {
          0% { -moz-transform: rotate(-10deg) }
          50% { -moz-transform: rotate(10deg) }
          100% { -moz-transform: rotate(-10deg) }
      }
       
      @-webkit-keyframes swing {
          0% { -webkit-transform: rotate(-10deg) }
          50% { -webkit-transform: rotate(10deg) }
          100% { -webkit-transform: rotate(-10deg) }
      }
.deng-box { position: fixed; top: -40px; left: -20px; z-index: 1999; } .deng-box1 { position: fixed; top: -30px; right: -20px; z-index: 1999; } .deng-box1 .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 5s infinite ease-in-out; animation: swing 5s infinite ease-in-out; box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1); } .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 3s infinite ease-in-out; animation: swing 3s infinite ease-in-out; box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1); } .deng-a { width: 100px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: 12px 8px 8px 10px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .deng-b { width: 45px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: -4px 8px 8px 26px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .xian { position: absolute; top: -20px; left: 60px; width: 2px; height: 20px; background: #dc8f03; } .shui-a { position: relative; width: 5px; height: 20px; margin: -5px 0 0 59px; -webkit-animation: swing 4s infinite ease-in-out; -webkit-transform-origin: 50% -45px; background: #ffa500; border-radius: 0 0 5px 5px; } .shui-b { position: absolute; top: 14px; left: -2px; width: 10px; height: 10px; background: #dc8f03; border-radius: 50%; } .shui-c { position: absolute; top: 18px; left: -2px; width: 10px; height: 35px; background: #ffa500; border-radius: 0 0 0 5px; } .deng:before { position: absolute; top: -7px; left: 29px; height: 12px; width: 60px; content: " "; display: block; z-index: 1999; border-radius: 5px 5px 0 0; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng:after { position: absolute; bottom: -7px; left: 10px; height: 12px; width: 60px; content: " "; display: block; margin-left: 20px; border-radius: 0 0 5px 5px; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng-t { font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif; font-size: 1.6rem; color: #ffa500; font-weight: bold; line-height: 42px; text-align: center; width: 25px; margin: 0 auto; } .night .deng-t, .night .deng-box, .night .deng-box1 { background: transparent !important; } @keyframes swing { 0% { transform: rotate(-10deg) } 50% { transform: rotate(10deg) } 100% { transform: rotate(-10deg) } } @-moz-keyframes swing { 0% { -moz-transform: rotate(-10deg) } 50% { -moz-transform: rotate(10deg) } 100% { -moz-transform: rotate(-10deg) } } @-webkit-keyframes swing { 0% { -webkit-transform: rotate(-10deg) } 50% { -webkit-transform: rotate(10deg) } 100% { -webkit-transform: rotate(-10deg) } }

第三步、添加判断限制

一般情况下是在首页,电脑端显示效果好一些,手机端就不显示了,具体看个人喜好了。所以加一些函数判断一下,

  • wp_is_mobile() 是否为移动端
  • is_home() 是否为首页

如果只想在首页,电脑端显示灯笼,可以用下面的判断语句把HTML代码包裹起来:

<?php if (!wp_is_mobile() && is_home()){?> <!-- 把上面的代码复制到这里 --> <?php } ?>
<?php if (!wp_is_mobile() && is_home()){?> <!-- 把上面的代码复制到这里 --> <?php } ?>
<?php if (!wp_is_mobile() && is_home()){?> <!-- 把上面的代码复制到这里 --> <?php } ?>

到此就完整实现了灯笼。下面是自己对原版进行改写的版本,下面两种版本具体使用步骤同上。

2两个左右对称版本

修改要点:

1,html不变,更改 .deng-box ,.deng-box1里面的position定位属性,一个left,一个right区分左右,

2,更改了css里面的.deng-t类。把文字由横排变竖排列显示方式,

线上演示效果参考本站。

WordPress网站添加国庆-春节快乐灯笼特效-升级版插图1

html

<!-- 灯笼1 https://soujiz.com/ -->
<div class="deng-box">
<div class="deng">
<div class="xian"></div>
<div class="deng-a">
<div class="deng-b"><div class="deng-t">国庆</div></div>
</div>
<div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
</div>
</div>
<!--灯笼2 https://soujiz.com/-->
<div class="deng-box1">
<div class="deng">
<div class="xian"></div>
<div class="deng-a">
<div class="deng-b"><div class="deng-t">快乐</div></div>
</div>
<div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
</div>
</div>
<!-- 灯笼1 https://soujiz.com/ -->
    <div class="deng-box">
        <div class="deng">
            <div class="xian"></div>
            <div class="deng-a">
                <div class="deng-b"><div class="deng-t">国庆</div></div>
            </div>
            <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
        </div>
    </div>
     
    <!--灯笼2 https://soujiz.com/-->
    <div class="deng-box1">
        <div class="deng">
            <div class="xian"></div>
            <div class="deng-a">
                <div class="deng-b"><div class="deng-t">快乐</div></div>
            </div>
            <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div>
        </div>
    </div>
<!-- 灯笼1 https://soujiz.com/ --> <div class="deng-box"> <div class="deng"> <div class="xian"></div> <div class="deng-a"> <div class="deng-b"><div class="deng-t">国庆</div></div> </div> <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div> </div> </div> <!--灯笼2 https://soujiz.com/--> <div class="deng-box1"> <div class="deng"> <div class="xian"></div> <div class="deng-a"> <div class="deng-b"><div class="deng-t">快乐</div></div> </div> <div class="shui shui-a"><div class="shui-c"></div><div class="shui-b"></div></div> </div> </div>

css

.deng-box {
position: fixed;
top: -30px;
left: -20px;
z-index: 1999;
}
.deng-box1 {
position: fixed;
top: -30px;
right: -20px;
z-index: 1999;
}
.deng-box1 .deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 5s infinite ease-in-out;
animation: swing 5s infinite ease-in-out;
box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
}
.deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 3s infinite ease-in-out;
animation: swing 3s infinite ease-in-out;
box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
}
.deng-a {
width: 100px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: 12px 8px 8px 10px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.deng-b {
width: 45px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: -4px 8px 8px 26px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.xian {
position: absolute;
top: -20px;
left: 60px;
width: 2px;
height: 20px;
background: #dc8f03;
}
.shui-a {
position: relative;
width: 5px;
height: 20px;
margin: -5px 0 0 59px;
-webkit-animation: swing 4s infinite ease-in-out;
-webkit-transform-origin: 50% -45px;
background: #ffa500;
border-radius: 0 0 5px 5px;
}
.shui-b {
position: absolute;
top: 14px;
left: -2px;
width: 10px;
height: 10px;
background: #dc8f03;
border-radius: 50%;
}
.shui-c {
position: absolute;
top: 18px;
left: -2px;
width: 10px;
height: 35px;
background: #ffa500;
border-radius: 0 0 0 5px;
}
.deng:before {
position: absolute;
top: -7px;
left: 29px;
height: 12px;
width: 60px;
content: " ";
display: block;
z-index: 1999;
border-radius: 5px 5px 0 0;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng:after {
position: absolute;
bottom: -7px;
left: 10px;
height: 12px;
width: 60px;
content: " ";
display: block;
margin-left: 20px;
border-radius: 0 0 5px 5px;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng-t {
font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
font-size: 1.6rem;
color: #ffa500;
font-weight: bold;
line-height: 42px;
text-align: center;
width: 25px;
margin: 0 auto;
}
.night .deng-t,
.night .deng-box,
.night .deng-box1 {
background: transparent !important;
}
@keyframes swing {
0% { transform: rotate(-10deg) }
50% { transform: rotate(10deg) }
100% { transform: rotate(-10deg) }
}
@-moz-keyframes swing {
0% { -moz-transform: rotate(-10deg) }
50% { -moz-transform: rotate(10deg) }
100% { -moz-transform: rotate(-10deg) }
}
@-webkit-keyframes swing {
0% { -webkit-transform: rotate(-10deg) }
50% { -webkit-transform: rotate(10deg) }
100% { -webkit-transform: rotate(-10deg) }
}
.deng-box {
          position: fixed;
          top: -30px;
          left: -20px;
          z-index: 1999;
      }
       
      .deng-box1 {
          position: fixed;
          top: -30px;
          right: -20px;
          z-index: 1999;
      }
       
      .deng-box1 .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 5s infinite ease-in-out;
          animation: swing 5s infinite ease-in-out;
          box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
      }
       
      .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 3s infinite ease-in-out;
          animation: swing 3s infinite ease-in-out;
          box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
      }
       
      .deng-a {
          width: 100px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: 12px 8px 8px 10px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .deng-b {
          width: 45px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: -4px 8px 8px 26px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .xian {
          position: absolute;
          top: -20px;
          left: 60px;
          width: 2px;
          height: 20px;
          background: #dc8f03;
      }
       
      .shui-a {
          position: relative;
          width: 5px;
          height: 20px;
          margin: -5px 0 0 59px;
          -webkit-animation: swing 4s infinite ease-in-out;
          -webkit-transform-origin: 50% -45px;
          background: #ffa500;
          border-radius: 0 0 5px 5px;
      }
       
      .shui-b {
          position: absolute;
          top: 14px;
          left: -2px;
          width: 10px;
          height: 10px;
          background: #dc8f03;
          border-radius: 50%;
      }
       
      .shui-c {
          position: absolute;
          top: 18px;
          left: -2px;
          width: 10px;
          height: 35px;
          background: #ffa500;
          border-radius: 0 0 0 5px;
      }
       
      .deng:before {
          position: absolute;
          top: -7px;
          left: 29px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          z-index: 1999;
          border-radius: 5px 5px 0 0;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng:after {
          position: absolute;
          bottom: -7px;
          left: 10px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          margin-left: 20px;
          border-radius: 0 0 5px 5px;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng-t {
          font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
          font-size: 1.6rem;
          color: #ffa500;
          font-weight: bold;
          line-height: 42px;
          text-align: center;
          width: 25px;  
          margin: 0 auto;  
      }
       
      .night .deng-t, 
      .night .deng-box, 
      .night .deng-box1 {
          background: transparent !important;
      }
      @keyframes swing { 
          0% { transform: rotate(-10deg) } 
          50% { transform: rotate(10deg) } 
          100% { transform: rotate(-10deg) } 
      }
       
      @-moz-keyframes swing {
          0% { -moz-transform: rotate(-10deg) }
          50% { -moz-transform: rotate(10deg) }
          100% { -moz-transform: rotate(-10deg) }
      }
       
      @-webkit-keyframes swing {
          0% { -webkit-transform: rotate(-10deg) }
          50% { -webkit-transform: rotate(10deg) }
          100% { -webkit-transform: rotate(-10deg) }
      }
.deng-box { position: fixed; top: -30px; left: -20px; z-index: 1999; } .deng-box1 { position: fixed; top: -30px; right: -20px; z-index: 1999; } .deng-box1 .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 5s infinite ease-in-out; animation: swing 5s infinite ease-in-out; box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1); } .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 3s infinite ease-in-out; animation: swing 3s infinite ease-in-out; box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1); } .deng-a { width: 100px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: 12px 8px 8px 10px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .deng-b { width: 45px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: -4px 8px 8px 26px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .xian { position: absolute; top: -20px; left: 60px; width: 2px; height: 20px; background: #dc8f03; } .shui-a { position: relative; width: 5px; height: 20px; margin: -5px 0 0 59px; -webkit-animation: swing 4s infinite ease-in-out; -webkit-transform-origin: 50% -45px; background: #ffa500; border-radius: 0 0 5px 5px; } .shui-b { position: absolute; top: 14px; left: -2px; width: 10px; height: 10px; background: #dc8f03; border-radius: 50%; } .shui-c { position: absolute; top: 18px; left: -2px; width: 10px; height: 35px; background: #ffa500; border-radius: 0 0 0 5px; } .deng:before { position: absolute; top: -7px; left: 29px; height: 12px; width: 60px; content: " "; display: block; z-index: 1999; border-radius: 5px 5px 0 0; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng:after { position: absolute; bottom: -7px; left: 10px; height: 12px; width: 60px; content: " "; display: block; margin-left: 20px; border-radius: 0 0 5px 5px; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng-t { font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif; font-size: 1.6rem; color: #ffa500; font-weight: bold; line-height: 42px; text-align: center; width: 25px; margin: 0 auto; } .night .deng-t, .night .deng-box, .night .deng-box1 { background: transparent !important; } @keyframes swing { 0% { transform: rotate(-10deg) } 50% { transform: rotate(10deg) } 100% { transform: rotate(-10deg) } } @-moz-keyframes swing { 0% { -moz-transform: rotate(-10deg) } 50% { -moz-transform: rotate(10deg) } 100% { -moz-transform: rotate(-10deg) } } @-webkit-keyframes swing { 0% { -webkit-transform: rotate(-10deg) } 50% { -webkit-transform: rotate(10deg) } 100% { -webkit-transform: rotate(-10deg) } }

3-四个灯笼版本

修改要点:

1,这个主要是在两个左右对称基础上进行修改,css保持不变,主要更改html,在<body>中的左<div class=”deng-box”></div>,右<div class=”deng-box1″></div>里面都复制了一个相同的<div class=”deng”>省略….</div>,

2,文字不合适的,可以自己需要的就可以了,

WordPress网站添加国庆-春节快乐灯笼特效-升级版插图2

html

css

.deng-box {
position: fixed;
top: -30px;
left: -20px;
z-index: 1999;
}
.deng-box1 {
position: fixed;
top: -30px;
right: 10px;
z-index: 1999;
}
.deng-box1 .deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 5s infinite ease-in-out;
animation: swing 5s infinite ease-in-out;
box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
}
.deng {
position: relative;
width: 120px;
height: 90px;
margin: 50px;
background: #d8000f;
background: rgba(216, 0, 15, 0.8);
border-radius: 50% 50%;
-webkit-transform-origin: 50% -100px;
-webkit-animation: swing 3s infinite ease-in-out;
animation: swing 3s infinite ease-in-out;
box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
}
.deng-a {
width: 100px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: 12px 8px 8px 10px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.deng-b {
width: 45px;
height: 90px;
background: #d8000f;
background: rgba(216, 0, 15, 0.1);
margin: -4px 8px 8px 26px;
border-radius: 50% 50%;
border: 2px solid #dc8f03;
}
.xian {
position: absolute;
top: -20px;
left: 60px;
width: 2px;
height: 20px;
background: #dc8f03;
}
.shui-a {
position: relative;
width: 5px;
height: 20px;
margin: -5px 0 0 59px;
-webkit-animation: swing 4s infinite ease-in-out;
-webkit-transform-origin: 50% -45px;
background: #ffa500;
border-radius: 0 0 5px 5px;
}
.shui-b {
position: absolute;
top: 14px;
left: -2px;
width: 10px;
height: 10px;
background: #dc8f03;
border-radius: 50%;
}
.shui-c {
position: absolute;
top: 18px;
left: -2px;
width: 10px;
height: 35px;
background: #ffa500;
border-radius: 0 0 0 5px;
}
.deng:before {
position: absolute;
top: -7px;
left: 29px;
height: 12px;
width: 60px;
content: " ";
display: block;
z-index: 1999;
border-radius: 5px 5px 0 0;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng:after {
position: absolute;
bottom: -7px;
left: 10px;
height: 12px;
width: 60px;
content: " ";
display: block;
margin-left: 20px;
border-radius: 0 0 5px 5px;
border: solid 1px #dc8f03;
background: #ffa500;
background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
.deng-t {
font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
font-size: 2.5rem;
color: #dc8f03;
font-weight: bold;
line-height: 85px;
text-align: center;
}
.night .deng-t,
.night .deng-box,
.night .deng-box1 {
background: transparent !important;
}
@keyframes swing {
0% { transform: rotate(-10deg) }
50% { transform: rotate(10deg) }
100% { transform: rotate(-10deg) }
}
@-moz-keyframes swing {
0% { -moz-transform: rotate(-10deg) }
50% { -moz-transform: rotate(10deg) }
100% { -moz-transform: rotate(-10deg) }
}
@-webkit-keyframes swing {
0% { -webkit-transform: rotate(-10deg) }
50% { -webkit-transform: rotate(10deg) }
100% { -webkit-transform: rotate(-10deg) }
}
.deng-box {
          position: fixed;
          top: -30px;
          left: -20px;
          z-index: 1999;
      }
       
      .deng-box1 {
          position: fixed;
          top: -30px;
          right: 10px;
          z-index: 1999;
      }
       
      .deng-box1 .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 5s infinite ease-in-out;
          animation: swing 5s infinite ease-in-out;
          box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
      }
       
      .deng {
          position: relative;
          width: 120px;
          height: 90px;
          margin: 50px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.8);
          border-radius: 50% 50%;
          -webkit-transform-origin: 50% -100px;
          -webkit-animation: swing 3s infinite ease-in-out;
          animation: swing 3s infinite ease-in-out;
          box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
      }
       
      .deng-a {
          width: 100px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: 12px 8px 8px 10px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .deng-b {
          width: 45px;
          height: 90px;
          background: #d8000f;
          background: rgba(216, 0, 15, 0.1);
          margin: -4px 8px 8px 26px;
          border-radius: 50% 50%;
          border: 2px solid #dc8f03;
      }
       
      .xian {
          position: absolute;
          top: -20px;
          left: 60px;
          width: 2px;
          height: 20px;
          background: #dc8f03;
      }
       
      .shui-a {
          position: relative;
          width: 5px;
          height: 20px;
          margin: -5px 0 0 59px;
          -webkit-animation: swing 4s infinite ease-in-out;
          -webkit-transform-origin: 50% -45px;
          background: #ffa500;
          border-radius: 0 0 5px 5px;
      }
       
      .shui-b {
          position: absolute;
          top: 14px;
          left: -2px;
          width: 10px;
          height: 10px;
          background: #dc8f03;
          border-radius: 50%;
      }
       
      .shui-c {
          position: absolute;
          top: 18px;
          left: -2px;
          width: 10px;
          height: 35px;
          background: #ffa500;
          border-radius: 0 0 0 5px;
      }
       
      .deng:before {
          position: absolute;
          top: -7px;
          left: 29px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          z-index: 1999;
          border-radius: 5px 5px 0 0;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng:after {
          position: absolute;
          bottom: -7px;
          left: 10px;
          height: 12px;
          width: 60px;
          content: " ";
          display: block;
          margin-left: 20px;
          border-radius: 0 0 5px 5px;
          border: solid 1px #dc8f03;
          background: #ffa500;
          background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
      }
       
      .deng-t {
          font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
          font-size: 2.5rem;
          color: #dc8f03;
          font-weight: bold;
          line-height: 85px;
          text-align: center;
      }
       
      .night .deng-t, 
      .night .deng-box, 
      .night .deng-box1 {
          background: transparent !important;
      }
      @keyframes swing { 
          0% { transform: rotate(-10deg) } 
          50% { transform: rotate(10deg) } 
          100% { transform: rotate(-10deg) } 
      }
       
      @-moz-keyframes swing {
          0% { -moz-transform: rotate(-10deg) }
          50% { -moz-transform: rotate(10deg) }
          100% { -moz-transform: rotate(-10deg) }
      }
       
      @-webkit-keyframes swing {
          0% { -webkit-transform: rotate(-10deg) }
          50% { -webkit-transform: rotate(10deg) }
          100% { -webkit-transform: rotate(-10deg) }
      }
.deng-box { position: fixed; top: -30px; left: -20px; z-index: 1999; } .deng-box1 { position: fixed; top: -30px; right: 10px; z-index: 1999; } .deng-box1 .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 5s infinite ease-in-out; animation: swing 5s infinite ease-in-out; box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1); } .deng { position: relative; width: 120px; height: 90px; margin: 50px; background: #d8000f; background: rgba(216, 0, 15, 0.8); border-radius: 50% 50%; -webkit-transform-origin: 50% -100px; -webkit-animation: swing 3s infinite ease-in-out; animation: swing 3s infinite ease-in-out; box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1); } .deng-a { width: 100px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: 12px 8px 8px 10px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .deng-b { width: 45px; height: 90px; background: #d8000f; background: rgba(216, 0, 15, 0.1); margin: -4px 8px 8px 26px; border-radius: 50% 50%; border: 2px solid #dc8f03; } .xian { position: absolute; top: -20px; left: 60px; width: 2px; height: 20px; background: #dc8f03; } .shui-a { position: relative; width: 5px; height: 20px; margin: -5px 0 0 59px; -webkit-animation: swing 4s infinite ease-in-out; -webkit-transform-origin: 50% -45px; background: #ffa500; border-radius: 0 0 5px 5px; } .shui-b { position: absolute; top: 14px; left: -2px; width: 10px; height: 10px; background: #dc8f03; border-radius: 50%; } .shui-c { position: absolute; top: 18px; left: -2px; width: 10px; height: 35px; background: #ffa500; border-radius: 0 0 0 5px; } .deng:before { position: absolute; top: -7px; left: 29px; height: 12px; width: 60px; content: " "; display: block; z-index: 1999; border-radius: 5px 5px 0 0; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng:after { position: absolute; bottom: -7px; left: 10px; height: 12px; width: 60px; content: " "; display: block; margin-left: 20px; border-radius: 0 0 5px 5px; border: solid 1px #dc8f03; background: #ffa500; background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03); } .deng-t { font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif; font-size: 2.5rem; color: #dc8f03; font-weight: bold; line-height: 85px; text-align: center; } .night .deng-t, .night .deng-box, .night .deng-box1 { background: transparent !important; } @keyframes swing { 0% { transform: rotate(-10deg) } 50% { transform: rotate(10deg) } 100% { transform: rotate(-10deg) } } @-moz-keyframes swing { 0% { -moz-transform: rotate(-10deg) } 50% { -moz-transform: rotate(10deg) } 100% { -moz-transform: rotate(-10deg) } } @-webkit-keyframes swing { 0% { -webkit-transform: rotate(-10deg) } 50% { -webkit-transform: rotate(10deg) } 100% { -webkit-transform: rotate(-10deg) } }

最后祝大家国庆,快乐!

© 版权声明
THE END
喜欢点个赞支持一下吧
点赞0赏币 分享
Don’t worry about what others are doing better than you. Concentrate on beating your own records every day.
不要担心别人会做得比你好。你只需要每天都做得比前一天好就可以了
评论交流 共1条

请登录后发表评论