我在网站上放了一些社交图标,当我盘旋它周围的圈子变得更大。 哪个对我没问题。但我面临的问题是,当div变得更大时,它会扰乱其他div。我试过z-index但不知道为什么它不起作用..
以下是为了修复而上传的网站..
http://muntazir.mmellahi.com/Muntazir%20prosmatic%20demo%202/
任何人都可以帮我解决问题,这样如果圆圈变大,就不会打扰其他div。
如果您打开页面并将鼠标悬停在标题上的社交图标上,您会发现图库会有所下降,但当您移除光标时,图库将会回到原位。
对不起的解释感到抱歉..
更新:添加代码。
CSS 我用于社交图标
.headerSocialIcons{
float: right;
margin-top: -44px;
width: 100%;
}
.headerSocialIcons .SocialIcons{
width: 100%;
top: 50%;
transform: translateY(-50%);
}
.headerSocialIcons .SocialIcons .link{
display: inline-block;
vertical-align: middle;
position: relative;
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px dashed white;
background-clip: content-box;
padding: 10px;
transition: .5s;
color: #D7D0BE;
margin-left: 15px;
margin-right: 15px;
text-shadow:
0 -1px 0 rgba(0, 0, 0, 0.2),
0 1px 0 rgba(255, 255, 255, 0.2);
font-size: 28px;
}
.headerSocialIcons .SocialIcons .link span{
display: block;
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.headerSocialIcons .SocialIcons .link:hover{
padding: 20px;
color: white;
margin-left: -5px;
transform: translateX(10px) rotate(360deg);
}
.headerSocialIcons .SocialIcons .link.google-plus {
background-color: tomato;
color: white;
}
.headerSocialIcons .SocialIcons .link.twitter {
background-color: #00ACEE;
color: white;
}
.headerSocialIcons .SocialIcons .link.facebook {
background-color: #3B5998;
color: white;
}
.headerSocialIcons .SocialIcons a{
width: 35px;
height: 35px;
display: inline-block;
border-radius: 5px;
font-family: "scicons";
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #fff;
transition: background-color .2s linear, color .2s linear;
}
.headerSocialIcons .Left{
display: inline;
float: left;
margin-left: 20px;
width: 350px;
}
.headerSocialIcons .Right{
float: right;
margin-right: 20px;
text-align: right;
width: 350px;
}
HTML
<div class="headerSocialIcons">
<div class="SocialIcons Left">
<a href="#" class="link facebook" target="_parent"><span class="fa fa-facebook-square"></span></a>
<a href="#" class="link twitter" target="_parent"><span class="fa fa-twitter"></span></a>
<a href="#" class="link google-plus" target="_parent"><span class="fa fa-google-plus-square"></span></a>
</div>
<div class="SocialIcons Right">
<a href="#" class="link facebook" target="_parent"><span class="fa fa-facebook-square"></span></a>
<a href="#" class="link twitter" target="_parent"><span class="fa fa-twitter"></span></a>
<a href="#" class="link google-plus" target="_parent"><span class="fa fa-google-plus-square"></span></a>
</div>
</div>
答案 0 :(得分:0)
问题解决了。
我必须将position:relative
与z-index
一起使用。
三江源。