CSS3鼠标:hover经过元素呼出显示图片

图片[1]-CSS3鼠标:hover经过元素呼出显示图片-雪哥尔

当鼠标停留在设置的元素时呼出图片,移开后隐藏。

CSS代码

.xulgr-hovershow .xulgr-hovershow-img {
	opacity:0;
	transform:translateY(6px);
	transition:.4s;
}
.xulgr-hovershow:hover .xulgr-hovershow-img,.xulgr-hovershow:hover{
	opacity:1;
	transform:translateY(0);
}
.xulgr-hovershow{
	position:relative;
	cursor:pointer;
	z-index:10;
}
.xulgr-hovershow .xulgr-hovershow-img{
	position:absolute;
	visibility:hidden;
}
.xulgr-hovershow:hover .xulgr-hovershow-img,.xulgr-hovershow:hover~.xulgr-hovershow-img,.xulgr-hovershow:hover{
	visibility:unset;
}
.xulgr-hovershow-img img{
	height: 100px;
	box-shadow: 0 5px 10px rgba(0,0,0,.2); border-radius:4px;
}

 

html代码

	<a class="xulgr-hovershow" href="javascript:;">
		鼠标经过这里呼出图片
		<div class="xulgr-hovershow-img">
			<img src="http://xg-ink.oss-accelerate.aliyuncs.com/call/wx.png" alt="扫一扫加雪哥的微信">
		</div>
	</a>

 

运行DEMO

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容