<a href=""><img src=""><span>content</span></a>
此处,当我悬停在图像上时,通过使用相对于显示无的位置和在span标记中的绝对位置显示跨度内容。现在,我的问题是,当我在图像上徘徊时,我需要过渡效果。为此,什么是CSS。请帮帮我。
答案 0 :(得分:3)
您无法将display: none;
的元素转移到display: block;
,因此您需要使用opacity
属性...
.example1 {
border: 1px solid #f00;
height: 30px;
}
.example1 span {
opacity: 0;
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
}
.example1:hover span {
opacity: 1;
}
答案 1 :(得分:0)
尝试在display:none
和display:block
将在visibility: hidden;
和visibility:visible
请参阅this article说明:
尽管CSS Basic Box Model规范说明,但可见性动画仍然存在 “动画:没有”
答案 2 :(得分:0)
a.tip2 {
position: relative;
text-decoration: none;
}
a.tip2 span {display: none;
opacity: 0;
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
}
a.tip2:hover span {
display: block;
position: absolute;
padding: .5em;
content: attr(title);
min-width: 120px;
text-align: center;
width: 162px;
height:auto;
top: -247px;
left: 70px;
background: rgba(0,0,0,.8);
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
color: #fff;
font-size: .86em;
opacity: 1;
}
a.tip2:hover span:after {
position: absolute;
display: block;
content: "";
border-color: rgba(0,0,0,.8) transparent transparent transparent;
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
bottom: -16px;
left:1em;
}
这是我的CSS,实际上我忘了说一件事。这是一个使用纯css的工具提示。