滑鼠懸浮上浮出現說明文字程式碼例項

螞蟻小編發表於2017-04-16

分享一段程式碼例項,它實現了滑鼠懸浮,出現說明文字的效果。

這樣的功能在實際應用中十分常見,需要的朋友可以做一下參考。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
ul,li,i,div,h3,p,label{
  margin: 0;
  padding: 0;
}
.ul1 li{
  position:relative;
  width: 250px;
  height: 200px;
  list-style: none;
  overflow: hidden;
  box-shadow:0 5px 10px  rgba(0, 0, 0, 0.0980392);
  color:#93999f;
  cursor: pointer;
  border-radius: 5px;
}
.ul1 i{
  display:block;
  width: 250px;
  height: 150px;
  background: #bce8f1;
}
.ul1 div{
  width: 250px;
  height: 144px;
}
.ul1 div .label1{
  position: absolute;
  top:130px;
  background: white;
  transition: all 0.5s;
}
.ul1 li:hover{
  box-shadow:0 5px 20px  rgba(0, 0, 0, 0.298039);
}
.ul1 li:hover .label1{
  top:100px;
}
.ul1 div h3{
  font-size: 14px;
  margin-top: 33px;
  color: #444;
}
.ul1 div p{
  height: 40px;
  font-size: 12px;
}
.ul1 .label2{
  position: absolute;
  width: 250px;
  bottom: 0;
  height: 20px; 
  background: white;
}
.color-red{
  color: red;
}
.r{
  float: right
}
</style>
</head>
<body>
<ul class="ul1">
  <li>
    <i></i>
    <div>
      <label class="label1">
        <h3>螞蟻部落</h3>
        <p>本站的url地址是www.softwhy.com,歡迎大家的訪問</p>
      </label>
      <label class="label2">
        <span class="l color-red">¥88.00</span>
        <span class="r">888人在學</span>
      </label>
    </div>
  </li>
</ul>
</body>
</html>

相關文章