div+css实现按钮悬停闪光动画效果代码
代码语言:html
所属分类:悬停
代码描述:div+css实现按钮悬停闪光动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <style> * { /* 常规初始化 */ margin: 0; padding: 0; box-sizing: border-box; /* 解决手机浏览器点击有选框的问题 */ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { /* 常规元素居中显示 */ display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #eeeeee; } button { /* 按钮宽高 */ width: 180px; height: 60px; /* 背景颜色 */ background-color: #262626; /* 圆角 */ border-radius: 60px; /* 字间距 */ letter-spacing: 6px; /* 文字大小颜色 */ font-size: 24px; color: rgba(255, 255, 255, 0.85); /* 边框线,button 默认有边框 */ border: 4px solid #000000; /* 内阴影 */ box-shadow: inset 0 0 30px #000000; /* 鼠标小手 */ cursor: pointer; /* 超出按钮的区域隐藏 */ overflow: hidden; position: relative; } button::before { content: ""; /* 按钮内部闪光块的宽高、颜色 */ width: 70%; height: 100%; background-color: rgba(255, 255, 255, 0.........完整代码请登录后点击上方下载按钮下载查看
网友评论0