css代码|悬浮按键优化(手机/电脑都显示)
时间:2023-07-30 23:25:23 阅读:1714
<style>/* 设置按钮样式 */.button { display: none; /* 默认隐藏按钮 */ position: fixed; /* 将按钮固定在页面上 */ bottom: 220px; /* 距离底部的距离为20像素 */ right: 620px; /* 距离右侧的距离为20像素 */ width: 200px; /* 初始按钮宽度为100像素 */ left: 50%; /* 将按钮居中对齐 */ height: 40px; /* 初始按钮高度为40像素 */ background-color: #CCFF99; /* 设置按钮背景颜色为紫色 */ color: #CC0033; /* 设置按钮字体颜色为白色 */ text-align: center; /* 文字居中对齐 */ line-height: 40px; /* 设置文字行高与按钮高度相等,使文字垂直居中 */ font-size: 16px; /* 设置文字大小为16像素 */ cursor: pointer; /* 鼠标悬停在按钮上时显示手型光标 */ text-decoration: none; /* 去除下划线 */ border-radius: 20px; /* 设置按钮为圆角 */ animation: pulse 2s infinite alternate; /* 添加动画效果 */}/* 在PC端显示按钮 */.button { display: block; }/* 按钮放大缩小动画效果 */@keyframes pulse { 0% { transform: scale(1); /* 初始大小为正常尺寸 */ } 50% { transform: scale(1.2); /* 放大到1.2倍大小 */ } 100% { transform: scale(1); /* 缩小回正常尺寸 */ } }</style><a href="/faka/qq.html" class="button">启动外挂</a>
网友评论