CSS实现按钮的特效:流光按钮,冷光按钮

一,流光按钮 CSS 样式

.btn{
    width: 100px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    background-color:aqua;
    line-height: 50px;
    background-image: linear-gradient(to left , #EAD6EE,#A0F1EA,rgb(124, 241, 241),#e3a5f0,#EAD6EE);
    background-size: 400%; 
}
@keyframes run{
    100%{
        background-position: 400% 0px;
    }
}
.btn:hover{
    animation: run 4s linear 0s infinite;
}


二,冷光按钮 CSS 样式

来源:https://github.com/luoyunqa/cool_lights_for_button

button{
    position: relative;
    height: 60px;
    width: 200px;
    margin: 0 35px;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #111;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer
}


button:first-child:hover{
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
}



button:last-child:hover{
    background: linear-gradient(90deg, #fa7199, #f5ce62, #e43603, #fa7199);
    background-size: 400%;
}


button:first-child:before,
button:last-child:before{
    content: '';
    position: absolute;
    background: inherit;
    top: -5px;
    right:-5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
}


button:first-child:hover:before,
button:last-child:hover:before{
    opacity: 1;
    z-index: -1;
}


button:hover{
    z-index: 1;
    animation: glow 8s linear infinite;
}


@keyframes glow {
    0%{
        background-position: 0%;
    }
    100%{
        background-position: 400%;
    }
}


真诚赞赏,手留余香
赞赏
操作系统
CentOS 7 挂载和卸载扩展云盘
2021-09-21
操作系统
CentOS 邮件提醒
2021-09-28
ngtwewy
随机推荐
esModuleInterop 到底做了什么?
Linux 中 top 命令的 Load Average 含义
Node.js 使用 Jest 做单元测试
MySQL 字符串截取函数 SUBSTRING_INDEX
Node.js 的 URL 的模块
如何使用命令修改 MySQL 数据库名称
Nginx 通过日志统计访问数据
Nginx 的 location 设置
如何调整 iconfont 图标的位置和基线
MySQL 使用 DATE_FORMAT() 和 FROM_UNIXTIME() 格式化时间

微信联系我

夜间模式切换
回到顶部