css3實現滑鼠懸浮背景上下翻滾效果

antzone發表於2017-03-07

分享一段程式碼例項,它實現了滑鼠懸浮背景上下翻滾效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
*{
  margin:0;
  padding:0;
  list-style:none;
  border:0;
}
body,html{
  width:100%;
  min-height:100%;
}
a{
  color:#fff;
  text-decoration:none;
}
.fanye{
  margin:50px 0;
  width:100%;
  height:40px;
  text-align:center;
}
.fanye .fy_ul{
  width:100%;
  height:40px;
  text-align:center;
}
.fanye li{
  height:40px;
  line-height:40px;
  display:inline-block;
  background-color:#170612;
  overflow:hidden;
}
.fanye li a{
  height:40px;
  display:block;
  transition:all 0.9s;
  transform-style:preserve-3d;
}
.fanye li a p{
  padding:0 8px;
  transition:all 0.9s;
}
 
.fanye li a p:first-child {
  background-color:#170612;
  transform:translateZ(38px);
}
.fanye li a p:last-child {
  background-color: #F51BBE;
  transform:translateZ(40px) rotateX(-90deg);
}
.fanye li a:hover {
  transform:rotateX(90deg);
}
.fanye li a:hover p:last-child {
  transform:translateZ(0) rotateX(-90deg);
}
</style>
 
</head>
<body>
<div class="fanye">
  <ul class="fy_ul">
    <li>
      <a href="">
        <p>上一頁</p>
        <p>上一頁</p>
      </a>
    </li>
    <li>
      <a href="">
        <p>1</p>
        <p>1</p>
      </a>
    </li>
    <li>
      <a href="">
        <p>2</p>
        <p>2</p>
      </a>
    </li>
    <li>
      <a href="">
        <p>3</p>
        <p>3</p>
      </a>
    </li>
    <li>
      <a href="">
        <p>下一頁</p>
        <p>下一頁</p>
      </a>
    </li>
  </ul>
</div>
</body>
</html>

相關文章