前端杂谈 · Web

H5C3鼠标悬停冒泡提示框

小编 · 3月14日 · 2020年

效果展示

纯css3鼠标移上去冒泡文字提示框特效,鼠标移动到感叹号按钮上悬停的时候滑动显示出气泡内容。文末附上全部源码 在线演示使用提示

H5C3鼠标悬停冒泡提示框

源码

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8" /> 
  <style>	
.inner {
  background: #09c999;
  padding: 1em;
  border-radius: 10px;
  width: 250px;
  clip-path: circle(10% at 90% 20%);
  transition: all .5s ease-in-out;
  cursor: pointer;
}
.inner:hover {
  clip-path: circle(75%);
  background: #20a0ff;
}
.inner h1 {
  color: white;
  margin: 0;
}
.inner p {
  color: white;
  font-size: .8rem;
}
.inner span {
  float: right;
  color: white;
  font-weight: bold;
  transition: color .5s;
  position: relative;
  margin-right: 4%;
  line-height:12px;
  font-size:24px;
}
.inner:hover span {
  color: rgba(255, 255, 255, 0);
}
</style>
 </head>  
 <body> 
  <div class="container"> 
   <div class="inner"> 
    <span>i</span> 
    <h1>Hey</h1> 
    <p>这是一张信息卡它会告诉你一些重要的事情</p> 
   </div> 
  </div>  
 </body>
</html>
0 条回应

必须 注册 为本站用户, 登录 后才可以发表评论!