【发布时间】:2024-01-03 21:07:02
【问题描述】:
我创建了一个社交媒体框,当您将鼠标悬停在共享按钮上时,它会弹出并显示社交媒体图标,它现在工作正常,但我想在其上进行过渡,所以当我将鼠标悬停在共享按钮上时其他 4 个项目一一显示,并带有一些过渡效果。
我正在寻找的效果类似于这个site,在右上角。
body {
background: #cdcdcd;
padding: 150px 0 0 100px;
}
.social-share {
background-color: #fff;
border-radius: 50%;
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
color: #34abd2;
float: left;
font-size: 18px;
height: 35px;
line-height: 35px;
position: relative;
text-align: center;
width: 35px;
cursor: pointer;
}
.social-share > ul {
list-style: none;
margin: 0;
padding: 0;
}
.social-share > ul > li {
list-style: none;
}
.social-share > ul > li > i {
transition: all 0.5s ease 0s;
}
.social-share > ul > li:hover > i {
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.social-share > ul > li > ul {
line-height: none;
padding: 0;
margin: 0 auto;
left: 0;
right: 0;
position: absolute;
bottom: 35px;
line-height: normal;
visibility: hidden;
}
.social-share > ul > li:hover ul {
visibility: visible;
}
.social-share > ul > li > ul > li {
list-style: none;
background-color: #fff;
margin-bottom: 3px;
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
}
.social-share > ul > li > ul > li > a {
color: #fff;
}
.social-share > ul > li > ul > li:nth-child(1) {
background-color: #3C5A99;
}
.social-share > ul > li > ul > li:nth-child(2) {
background-color: #229EF1;
}
.social-share > ul > li > ul > li:nth-child(3) {
background-color: #DD4A40;
}
.social-share > ul > li > ul > li:nth-child(4) {
background-color: #2FA64A;
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet"/>
<div class="social-share">
<ul>
<li><i class="fa fa-share-alt" aria-hidden="true"></i>
<ul>
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-whatsapp" aria-hidden="true"></i></a></li>
</ul>
</li>
</ul>
</div>
【问题讨论】:
-
我了解您不满意的javascript?
-
我实际上希望仅使用 CSS 来处理它
标签: jquery html css css-transitions