博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
37.1拓展之按钮特效
阅读量:4965 次
发布时间:2019-06-12

本文共 1980 字,大约阅读时间需要 6 分钟。

在线地址:

HTML code:

CSS code:

html, body {
margin: 0; padding: 0; height: 100%; display: flex; justify-content: center; align-items: center; background-color: black}nav ul li{
color: white; list-style: none; font-size: 24px; text-transform: uppercase; margin-top: 1em; padding: 1em 3em; border: 1px solid white; border-radius: 0.2em;}nav ul li:nth-of-type(1):hover{
color: blue; border-color: blue; box-shadow: 0 0 0 3px blue;}nav ul li:nth-of-type(2):hover{
color: blue; /* animation-fill-mode : none | forwards | backwards | both; forwards 当动画完成后,保持最后一个属性值. */ animation: border-change 1s linear forwards;}@keyframes border-change{
0%{ border-top-color: white; } 25%{
border-top-color: blue; } 50%{
border-top-color: blue; border-right-color: blue; } 75%{
border-top-color: blue; border-right-color: blue; border-bottom-color: blue; } 100%{
border-color: blue; }}nav ul li:nth-of-type(3){
color: white; transition: border-top-color linear 0.2s 0s, border-right-color linear 0.2s 0.2s, border-bottom-color linear 0.2s 0.4s, border-left-color linear 0.2s 0.6s; }nav ul li:nth-of-type(3):hover{
color: blue; border-top-color: blue; border-right-color: blue; border-bottom-color: blue; border-left-color: blue; /* 动画名称 进行时间 速度快慢 开始时间 */ animation: pulse 1s linear 0.8s;}@keyframes pulse {
from { /* rgb(30, 144, 255) = dodgerblue */ box-shadow: 0 0 rgba(30, 144, 255, 0.5); } to {
box-shadow: 0 0 0 1em rgba(30, 144, 255, 0); }}

 

posted on
2019-02-20 22:53 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/FlyingLiao/p/10409782.html

你可能感兴趣的文章
世界上最方便的SharePoint移动客户端--Rshare
查看>>
MongoDB要点
查看>>
字段与属性的总结与比较
查看>>
[转]Linear Depth Buffer(线性深度缓冲区)
查看>>
05最小生成树_Prim
查看>>
centos iptables
查看>>
Mysql数据库日志
查看>>
Python基础-数据类型
查看>>
unity3d 移动与旋转 2
查看>>
MyEclipse安装Freemarker插件
查看>>
php 文件下载
查看>>
寻找二叉查找树中比指定值小的所有节点中最大的那个节点
查看>>
如何设置输入框达到只读效果
查看>>
html5模拟平抛运动
查看>>
java面向对象下:Java数据库编程
查看>>
RT3070 USB WIFI 在连接socket编程过程中问题总结
查看>>
Traffic Management Gym - 101875G
查看>>
cassandra 3.x官方文档(2)---架构解析
查看>>
java -version 问题 : C:\ProgramData\Oracle\Java\javapath;
查看>>
软件架构---SOA体系
查看>>