圆弧派博客 - 专注于网络技术 - HTML HTML知识区 2024-07-07T00:41:00+08:00 Typecho https://www.iarc.top/feed/atom/group/HTML/ <![CDATA[Joe文章列表添加渐变颜色效果]]> https://www.iarc.top/452.html 2024-07-07T00:41:00+08:00 2024-07-07T00:41:00+08:00 青帝 http://icp.iarc.top 一个大气的文章列表CSS渐变动画,也可以使用图片作为渐变背景,,效果如下(鼠标移动到元素上后颜色会更加突出):
  • 日间模式
    1
  • 夜间模式
    2

    接下来需要编辑的文件以及相对Joe主题的文件路径:

  • joe.index.js /Joe/assets/js
  • joe.index.css /Joe/assets/css
  • joe.mode.css/Joe/assets/css

开始(共三部分)

{tabs}
{tabs-pane label="添加HTML代码"}
打开joe.index.js文件找到如图所示位置
3
可以直接搜joe_list__item wow default定位到,其实一打开就是了。
在第一个a标签元素后面加入如下代码

<div class="article-banner-wrap"></div>
<div class="article-banner"></div>

4
{/tabs-pane}
{tabs-pane label="添加CSS代码"}
直接将下面的css代码复制粘贴到joe.index.css文件的最后面就行了

/*首页列表渐变*/
.article-banner-wrap {
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
}

.article-banner {
    visibility: hidden;
    opacity: .2;
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center center;
transition: opacity 0.2s;
-webkit-mask-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
border-radius: 8px;
background:linear-gradient(to left,#2BC0E4,#EAECC6);
visibility: visible;
animation: banner-show 1s;
}
.joe_list__item.default:hover .article-banner{opacity: 1;}

5
其中的background可以改成图片地址,这样效果就是图片了,但图片会拖累网站加载速度,可自行决定是否要换成图片。
{/tabs-pane}
{tabs-pane label="适配夜间模式"}
打开joe.mode.css文件,将以下CSS代码加入文件底部即可。

/*首页列表图片渐变夜间模式*/
html[data-night='night'] .article-banner{
    background: linear-gradient(to left,#1F1C2C,#928DAB);
    opacity:0.1
}

6

我这里不是最底部是因为我后来又加其他东西了,其实也不是一定要最底部,只是方便小白操作和自己描述了。
{/tabs-pane}
{/tabs}

]]>
<![CDATA[为自己博客or网页加上鼠标流光背景JS特效]]> https://www.iarc.top/264.html 2023-07-02T16:06:00+08:00 2023-07-02T16:06:00+08:00 青帝 http://icp.iarc.top 鼠标特效

鼠标流光背景特效(乱起的名别太在意 :@(献花) ),canvas画布配合JS即可实现,这个版本是我从一个人单页里面抄下来的,顺便优化了一下后将其加入到了本站夜间模式

{card-default label="快速实现" width=""}

<canvas id="sbcanvas" class="sbcanvas"></canvas>
<script src="https://www.iarc.top/CDN/js/sbxg.js"></script>
<style>
.sbcanvas{
    display: block;
   position: fixed;
   top: 0;
   z-index: -9;
}
</style>

{/card-default}

将特效设为博客夜间模式

1.先在body写入

<canvas id="sbcanvas" class="sbcanvas"></canvas>
<script src="https://www.iarc.top/CDN/js/sbxg.js"></script>

2.更改css属性display为none(日间模式不显示该元素)

.sbcanvas{
    display: none;
   position: fixed;
   top: 0;
   z-index: -9;
}
</style>

3.在joe.mode.css文件夹最下面加入以下代码

html[data-night='night'] .sbcanvas{display:block;}

完成以上操作即可大功告成,快去开启夜间模式试一下吧

]]>
<![CDATA[phpMySQL添加自增值和新表单元格无法编辑解决方法]]> https://www.iarc.top/174.html 2023-05-07T20:21:00+08:00 2023-05-07T20:21:00+08:00 青帝 http://icp.iarc.top 在刚创建数据表后,想用phpMyAdmin编辑表的时候,有没有遇到phpMyAdmin提示’当前所选内容没有包含唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用’呢?
1.png
这是表里面没有设置主键的原因
已有的mysql数据表,希望增加一个自增的字段,并设置新数据的初始值,实际上不复杂,只是做个备忘。

新表设置主键

我们先添加一个int自增值字段,比如,我在表A里新增一个字段名为id、数据类型为INT的字段并将其设置为主键,所执行的SQL语句为:

alter table A add column id int auto_increment primary key;

语法格式如下:

alter table 表名 add column 字段名 数据类型 auto_increment primary key;

设置主键

到’结构’选项卡,选中刚才添加的字段,选择’主键’,然后点确定就好了
2.png
回到浏览,即可看到,已经可以进行编辑
3.png

phpmysql给字段增加自增属性

在mysql中,可以通过给字段添加“AUTO_INCREMENT”属性来给字段增加自增属性,语法“alter table 表名 add column 字段名 数据类型 AUTO_INCREMENT;”

通过给字段添加 AUTO_INCREMENT 属性来实现字段自增长。语法格式如下:

字段名 数据类型 AUTO_INCREMENT

默认情况下,AUTO_INCREMENT 的初始值是 1,每新增一条记录,字段值自动加 1。

一个表中只能有一个字段使用 AUTO_INCREMENT 约束,且该字段必须有唯一索引,以避免序号重复(即为主键或主键的一部分)。

AUTO_INCREMENT 约束的字段必须具备 NOT NULL 属性。

AUTO_INCREMENT 约束的字段只能是整数类型(TINYINT、SMALLINT、INT、BIGINT 等)。

AUTO_INCREMENT 约束字段的最大值受该字段的数据类型约束,如果达到上限,AUTO_INCREMENT 就会失效。

自增字段一般用于主键中。
当主键定义为自增长后,这个主键的值就不再需要用户输入数据了,而由数据库系统根据定义自动赋值。每增加一条记录,主键会自动以相同的步长进行增长。
]]>
<![CDATA[通过Nginx规则防止备份被恶意扫描下载[可有效防止备份攻击]]]> https://www.iarc.top/171.html 2023-04-22T22:00:00+08:00 2023-04-22T22:00:00+08:00 青帝 http://icp.iarc.top 自从网站建立之初到现在网站有了规模后,每天都有很多个机器人来恶意扫描网站备份文件,日志多的让你觉的可怕,对于这种恶意扫描的方法就需要以彼之道,还施彼身,我们可以通过以下俩种方法来防止服务器被恶意扫描,其中以彼之道,还施彼身的方法,愿把它称为:防暴美学。

方法一

此种方法比较暴力,就是以彼之道,还施彼身,利用伪静态规则进行跳转下载,比如:扫描根目录下的 /web.rar,那么就会触发规则跳转到大文件下载地址,100G让他慢慢下载,下个爽,磁盘爆了才开心。

打开网站 Nginx 配置文件,将以下规则加入 server 内,完成配置,规则如下:

server {

    ...
    
    # 专治扫描户
    rewrite \.rar/?$ http://speedtest.tele2.net/100GB.zip permanent;
    rewrite \.tar/?$ http://speedtest.tele2.net/100GB.zip permanent;
    rewrite \.zip/?$ http://speedtest.tele2.net/100GB.zip permanent;
    rewrite \.sql/?$ http://speedtest.tele2.net/100GB.zip permanent;
    rewrite \.gz/?$ http://speedtest.tele2.net/100GB.zip permanent;
    rewrite \.7z/?$ http://speedtest.tele2.net/100GB.zip permanent;
    
    # 或者使用
    rewrite \.(rar|zip|tar|sql|gz|7z)/?$ http://speedtest.tele2.net/100GB.zip permanent;
    
    ...
  
}

如果你觉得 100GB 响应时间有点长,那么下面的小文件下载地址,任你挑选,包你满意,地址如下:

新加坡: http://lg-sin.fdcservers.net/10GBtest.zip 
日本: http://lg-tok.fdcservers.net/10GBtest.zip 
香港: http://lg-hkg.fdcservers.net/10GBtest.zip

方法二

此方法最简单粗暴,直接网站 Nginx 配置文件里面添加以下的规则,针对服务器上经常让扫描的文件,进行直接禁止访问,请注意:资源下载网站请慎用,规则如下:

server{

    ...

    # 禁止访问指定文件
    location ~ \.(zip|rar|sql|tar|gz|7z)$ {

        return 444;

    }

    ...
    
}
以上Nginx 规则就是当有用户或恶意扫描访问网站上的 zip|rar|sql|tar|gz|7z 等资源时,直接返回 444 错误码。

最后说明

以上方法各有千秋,但我更加喜欢第一种方法,以彼之道,还施彼身,像我的性格,既然来了,我也不好意思让人家空手而归是吧,而方法二如果直接全部禁止访问,那么用户就没办法下载了,所以资源下载网站请慎用方法二。

]]>
<![CDATA[360壁纸Api接口文档]]> https://www.iarc.top/168.html 2023-04-04T15:04:00+08:00 2023-04-04T15:04:00+08:00 青帝 http://icp.iarc.top 360壁纸Api接口文档

2560x1600

分类接口

接口地址:http://wp.birdpaper.com.cn/intf/getCategory

返回格式:JSON

请求方式:GET

请求示例:http://wp.birdpaper.com.cn/intf/getCategory

请求参数说明:直接请求

返回参数说明:

名称 类型 必填 说明
old_id String 分类id
category String 分类名称
position String 总张数
hot_tag String 二级分类

返回示例:

{
        errno: 0,
        msg: "",
        data: [
            {
                category: "4K专区",
                show_name: "4K",
                position: "100",
                hot_tag: [],
                old_id: "36"
            },
            {
                category: "美女模特",
                show_name: "美女",
                position: "99",
                hot_tag: [
                    {
                        tag: "清纯",
                        show_tag: "清纯"
                    },
                    {
                        tag: "YOU物馆",
                        show_tag: "YOU物馆"
                    },
                    {
                        tag: "性感女神",
                        show_tag: "性感女神"
                    },
                    {
                        tag: "文艺古风",
                        show_tag: "文艺古风"
                    }
                ],
                old_id: "6"
            },


        ]
    }

分类详情

接口地址:http://wp.birdpaper.com.cn/intf/GetListByCategory?cids=分类ID&pageno=1&count=10

返回格式:JSON

请求方式:GET

请求示例:http://wp.birdpaper.com.cn/intf/GetListByCategory?cids=36&pageno=1&count=10

请求参数说明:

名称 类型 必填 说明
cids Number 分类id
pageno Number 分页
count Number 加载数量

返回参数说明:

名称 类型 必填 说明
id String 唯一id
url String 图片地址
category String 所属分类
category String 描述【关键字】

示例代码:

{
        errno: 0,
        msg: "",
        data: {
            total_count: 2000,
            total_page: 200,
            pageno: 1,
            count: 10,
            list: [
                {
                    id: "2023166",
                    category: "4K专区",
                    tag: "战斗机,飞机,跑道",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/3650801a856228d3997177edb8a1af85--2407623804.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2023154",
                    category: "4K专区",
                    tag: "春意盎然,草原,牧场,辽阔",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/1d14e3582128cc37c000732f978e8f1f--367037341.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2023151",
                    category: "4K专区",
                    tag: "春意盎然,草原,蓝天,云朵,护眼",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/041032637716209918e845fa5ad71f84--3089467778.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2022431",
                    category: "4K专区",
                    tag: "国漫,鬼刀,冰公主",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/475b89875e937bd2b3c66ab671399629--4138468370.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2022428",
                    category: "4K专区",
                    tag: "护眼壁纸,蒲公英",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/b53b176f0834948e28180a23512aa2b2--694726005.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2021933",
                    category: "4K专区",
                    tag: "夏威夷海滩,,黄昏,,",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/e567cb40c5774304783516299e518be4--1848356019.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2021927",
                    category: "4K专区",
                    tag: "夏威夷,,海滩,,航拍",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/c2a52d1c2fc64ab43e4b1308cb200645--2561210487.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2021917",
                    category: "4K专区",
                    tag: "绿巨人,漫威,钢铁侠",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/98dc794cf51b17a81972be1b119bae09--605464834.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2021811",
                    category: "4K专区",
                    tag: "金发,美女,精灵,兽耳",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/2a2ffaeeddfcedeabe6cbd6568b75cd9--2249190785.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                },
                {
                    id: "2021810",
                    category: "4K专区",
                    tag: "森林,丛林,河流,航拍",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202006/682e17b213552fc3083e393b5da4b4b6--2092649417.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "36"
                }
            ]
        }
    }

搜索功能

接口地址:http://wp.birdpaper.com.cn/intf/search?content=搜索关键字&pageno=1&count=10

返回格式:JSON

请求方式:GET

请求示例:http://wp.birdpaper.com.cn/intf/search?content=模特&pageno=1&count=10

请求参数说明:

名称 类型 必填 说明
content Number 关键字
pageno Number 分页
count Number 加载数量

返回参数说明:

名称 类型 必填 说明
id String 唯一id
url String 图片地址
category String 所属分类
tag String 描述【关键字】

示例代码:

{
        errno: 0,
        msg: "",
        data: {
            total_count: 2000,
            total_page: 200,
            pageno: 1,
            count: 10,
            list: [
                {
                    id: "324680",
                    tag: "美女模特",
                    category: "美女模特",
                    url: "http://cdn-ali-img-staticbz.shanhutech.cn/bizhi/staticwp/201903/761350b68e44fca315cff737d409b19f.jpg",
                    class_id: "6"
                },
                {
                    id: "324678",
                    tag: "美女模特",
                    category: "美女模特",
                    url: "http://cdn-ali-img-staticbz.shanhutech.cn/bizhi/staticwp/201903/e83a9930f71dc0d9cb0d184a9027c7f2.jpg",
                    class_id: "6"
                }
            ]
        }
    }

最新壁纸

接口地址:http://wp.birdpaper.com.cn/intf/newestList?pageno=1&count=10

返回格式:JSON

请求方式:GET

请求示例:http://wp.birdpaper.com.cn/intf/newestList?pageno=1&count=10

请求参数说明:

名称 类型 必填 说明
pageno Number 分页
count Number 加载数量

返回参数说明:

名称 类型 必填 说明
total_count String 总条数
total_page String 总页数
pageno String 当前页数
count String 当前条数
list Array 数据数组
category String 所属分类
url String 地址
tag String 描述【关键字】

示例代码:

{
        errno: 0,
        msg: "",
        data: {
            total_count: 180,
            total_page: 18,
            pageno: 1,
            count: 10,
            list: [
                {
                    id: "2022854",
                    category: "动漫卡通",
                    tag: "二次元,教室,桌椅,黑板",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/d675b9065438991b26f1b842824c49a8--1570210833.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "26"
                },
                {
                    id: "2022848",
                    category: "风景大片",
                    tag: "油菜花,平原,田野,广阔",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/f2e18b5f43f5a2a4e8ba826e58cd3bdd--774278070.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "9"
                },
                {
                    id: "2022845",
                    category: "风景大片",
                    tag: "自然风光,山顶,雾,群山",
                    url: "http://cdn-ali-img-shstaticbz.shanhutech.cn/bizhi/staticwp/202007/9b8ad17988a067f2af48dfbd1403a88a--2871356798.jpg",
                    status: "1",
                    live_open: false,
                    class_id: "9"
                },
                
            ]
        }
    }

备注

名称 类型 必填 说明
total_count String 总条数
total_page String 总页数
pageno String 当前页数
count String 当前条数

壁纸下载站:

戳我前往

]]>
<![CDATA[「公益」MetingApi接口(可解网易云音乐黑胶歌曲)]]> https://www.iarc.top/149.html 2023-02-05T21:12:00+08:00 2023-02-05T21:12:00+08:00 青帝 http://icp.iarc.top 我们都是苦旅人,因为一点善念、一丝感动、一处荫蔽走在山水间,也曾发宏愿把世界走遍,却止步于尘烟。
2023年应是改变的一年,势必遇见新的自己!
给各位拜个晚年,元宵节快乐!

Github开源地址:https://github.com/metowolf/Meting
Meting自带的接口目前无法解析网易云黑胶音乐了(只能放40秒),所以圆弧免费为广大站长提供一个能解析网易云黑胶和QQ音乐VIP歌曲的MetingApi接口:https://v.iarc.top/

在Meting.js文件里第40行左右的API替换成上面的即可

再附上一个第三方接口:https://api.mizore.cn/meting/api.php
第个直接请求会403,并非接口失效,带上参数请求即可,例:https://api.mizore.cn/meting/api.php?server=netease&type=playlist&id=7783760543&r=:r
参数 默认 描述
id require 歌曲 ID / 播放列表 ID / 专辑 ID / 搜索关键字
server require 音乐平台: netease, tencent, kugou, xiami, baidu
type require song, playlist, album, search, artist
auto options 音乐链接,支持: netease, tencent, xiami
fixed false 固定模式
mini false 迷你模式
autoplay false 自动播放
theme #2980b9 主题色
loop all 播放器循环播放,值: 'all', 'one', 'none'
order list 播放顺序: 'list', 'random'
preload auto 预加载值: 'none', 'metadata', 'auto'
volume 0.7 默认音量,注意播放器会记住用户设置,用户自己设置音量后默认音量将不起作用
mutex true 防止同时播放,当这个播放开始时暂停其他播放
lrc-type 0 歌词类型
list-folded false 指示列表是否应该首先折叠
list-max-height 340px 列出最大高度
storage-name metingjs 存储播放器设置的 localStorage 键

{abtn icon="fa-bandcamp" color="#ff6800" href="https://www.iarc.top/57.html" radius="17.5px" content="Meting使用方法"/}

该解析接口的网易云黑胶不会到期。

绿钻到期了,QQ音乐只能解析非会员音乐了。
music.jpg

]]>
<![CDATA[phpmysql复制一列到另一列的方法]]> https://www.iarc.top/143.html 2023-01-17T22:04:00+08:00 2023-01-17T22:04:00+08:00 青帝 http://icp.iarc.top mysql复制一列到另一列方法归类,方便使用的时候查找


UPDATE 表名 SET B列名=A列名

需求:把一个表某个字段内容复制到另一张表的某个字段。

实现sql语句1:

代码如下:

UPDATE file_manager_folder f1
LEFT OUTER JOIN file_manager_folder f2 
 ON f1.name = f2.name AND f2.parentId = 54
SET f1.parentId = 54 
WHERE f2.name IS NULL AND f1.id IN (1,2,3);

实现sql语句2:

代码如下:

update B set extra = A.extra from A join B on (A.id = B.id);

实现sql语句3:

代码如下:

update b set b.sms = (select a.sms from a where a.id = b.id)

需要确定两张表中的id都是主键或者唯一

实现sql语句4:

代码如下:

UPDATE A SET A.SMS = (SELECT B.SMS FROM B WHERE A.ID = B.ID) WHERE EXISTS (SELECT 1 FROM B WHERE A.ID = B.ID);

实现sql语句5:
复制一个表字段数据到另外一个表的字段,可以这么写:
实现sql语句5:

代码如下:

UPDATE tb_1 INNER JOIN tb_2 ON tb_1.tid = tb_2.tid
SET tb_1.tcontent = tb_2.tcontent

附:同表复制

需求:把同一张表的一个字段内的内容复制到另一个字段里

例1:
我想把article表中A字段的内容复制到article表中B字段里面sql语句为:

代码如下:

update article set B=A;

例2:
有时候,我们需要复制某个字段一整列的数据到另外一个新的字段中,这很简单,SQL可以这么写:

代码如下:

UPDATE tb_1 SET content_target = content_source;

大概写法如下:

代码如下:

Update {your_table} set {source_field} = {object_field} WHERE cause

现有表A和表B,希望更新A表,当 A.bid = B.id时,a.x = b.x, a.y=b.y:

update a inner join b on a.bid=b.id set a.x=b.x,a.y=b.y;
]]>
<![CDATA[元旦快乐!这是一款3D烟花源码]]> https://www.iarc.top/132.html 2023-01-01T14:35:00+08:00 2023-01-01T14:35:00+08:00 青帝 http://icp.iarc.top 3D烟花
{cloud title="3D烟花特效源码" type="lz" url="https://xql.lanzoue.com/ilJp00jttd4f" password=""/}

直接解压到本地或网站根目录打开即可

添加音乐可参考这两篇文章:使用JS使音乐自动播放的两种方法(不受限于浏览器)
JavaScript实现音乐单曲循环

]]>
<![CDATA[爱坤,CXK在线打篮球游戏源码]]> https://www.iarc.top/84.html 2022-12-25T14:12:00+08:00 2022-12-25T14:12:00+08:00 青帝 http://icp.iarc.top 没有坤坤,那如何能叫新年呢?我们需要要有坤坤,好吧。给你们来一个经典永垂不朽的爱坤打篮球。喜欢的话记得吱一声儿哦。

演示站

https://lab.iarc.top/cxk/

演示图

cxk.jpg

下载地址

{hide}

{cloud title="cxk打篮球小游戏源码" type="lz" url="https://xql.lanzoue.com/iLNWF0jdf0kd" password=""/}

{/hide}

]]>
<![CDATA[为网站添加个新年灯笼提前增点喜庆]]> https://www.iarc.top/82.html 2022-12-23T22:14:00+08:00 2022-12-23T22:14:00+08:00 青帝 http://icp.iarc.top 效果图(与本篇文章上面一致)

lll.jpg

代码:

将下面代码加在head标签或者body中即可

<!-- 灯笼代码 -->
<meta charset="utf-8">
<div class="deng-box2">
    <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>
<div class="deng-box3">
    <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>
<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>
<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>
<style type="text/css">
    .deng-box {
        position: fixed;
        top: -40px;
        right: 150px;
        z-index: 9999;
        pointer-events: none;
    }
    .deng-box1 {
        position: fixed;
        top: -30px;
        right: 10px;
        z-index: 9999;
        pointer-events: none
    }
    .deng-box2 {
        position: fixed;
        top: -40px;
        left: 150px;
        z-index: 9999;
        pointer-events: none
    }
    .deng-box3 {
        position: fixed;
        top: -30px;
        left: 10px;
        z-index: 9999;
        pointer-events: none
    }
    .deng-box1 .deng,
    .deng-box3 .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, .8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing 5s infinite ease-in-out;
        box-shadow: -5px 5px 30px 4px #fc903d
    }
    .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, .8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing 3s infinite ease-in-out;
        box-shadow: -5px 5px 50px 4px #fa6c00
    }
    .deng-a {
        width: 100px;
        height: 90px;
        background: #d8000f;
        background: rgba(216, 0, 15, .1);
        margin: 12px 8px 8px 8px;
        border-radius: 50% 50%;
        border: 2px solid #dc8f03
    }
    .deng-b {
        width: 45px;
        height: 90px;
        background: #d8000f;
        background: rgba(216, 0, 15, .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: orange;
        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: orange;
        border-radius: 0 0 0 5px
    }
    .deng:before {
        position: absolute;
        top: -7px;
        left: 29px;
        height: 12px;
        width: 60px;
        content: " ";
        display: block;
        z-index: 999;
        border-radius: 5px 5px 0 0;
        border: solid 1px #dc8f03;
        background: orange;
        background: linear-gradient(to right, #dc8f03, orange, #dc8f03, orange, #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: orange;
        background: linear-gradient(to right, #dc8f03, orange, #dc8f03, orange, #dc8f03)
    }
    .deng-t {
        font-family: 黑体, Arial, Lucida Grande, Tahoma, sans-serif;
        font-size: 3.2rem;
        color: #dc8f03;
        font-weight: 700;
        line-height: 85px;
        text-align: center
    }
    .night .deng-box,
    .night .deng-box1,
    .night .deng-t {
        background: 0 0 !important
    }
    @-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)
        }
    }
</style>
]]>