1 Star 0 Fork 83

曾庆辉/前端页面效果合集

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
浮动显示按钮 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
木兰君 提交于 2020-09-19 15:56 . add 浮动显示按钮.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.banner1 {
width: 234px;
height: 34px;
border-radius: 40px;
position: absolute;
top: 400px;
left: 600px;
}
.banner1 a {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: 2px solid lightblue;
position: absolute;
left: 0px;
top: 0px;
background: lightgreen;
color: #fff;
text-align: center;
text-decoration: none;
cursor: pointer;
z-index: 2;
}
.banner1 a:hover+span {
transform: translateX(40px);
opacity: 1;
}
.banner1 span {
display: inline-block;
width: auto;
padding: 0 20px;
height: 30px;
line-height: 30px;
background: lightblue;
border-radius: 30px;
text-align: center;
color: #fff;
position: absolute;
top: 2px;
opacity: 0;
transition: all 1s;
transform: translateX(80px);
}
</style>
</head>
<body>
<div class="banner1">
<a href="javascript:;"></a>
<span>这是我的个人博客</span>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zqhly/front_page_effect_collection.git
git@gitee.com:zqhly/front_page_effect_collection.git
zqhly
front_page_effect_collection
前端页面效果合集
master

搜索帮助