微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在悬停时向按钮添加元素

如何解决如何在悬停时向按钮添加元素

我对 CSS 还很陌生,我想知道是否可以在悬停按钮上显示一些内容(图像)。我会附上我想要的图片。提前致谢。

image button

解决方法

这是一种方法:

.btncontain {
  position: relative;
  width: 200px;
  height: 100px;
}

.button {
  border: 3px solid aqua;
  border-radius: 10%;
  width: 100px;
  margin: 20px;
  padding: 10px;
}

.button:hover{
  background-color: aqua;
color: white;
}

.button:before {
  content: "Normal";
}

.button:hover:before {
  content: "On Hover";
}

.btncenter {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.bubble {
  width: 30px;
  display: none;
  z-index: -1;
}

.button:hover .bubble{
  display: block;
}

.bubbletop{  
  position: absolute;
  top: 25%;
  left: 85%;
  -ms-transform: translate(-50%,-50%);
}

.bubblebottom{
  position: absolute;
  top: 75%;
  left: 15%;
  -ms-transform: translate(-50%,-50%);
}
<div class="btncontain">

 <div class="btncenter">
  <button class="button">   <img class="bubble bubbletop"src="https://cdn130.picsart.com/262368078025212.png?r1024x1024">
   <img class="bubble bubblebottom"src="https://cdn130.picsart.com/262368078025212.png?r1024x1024"></button>
</div>
</div>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。