代碼執行個體之純CSS代碼實現翻頁效果_經驗交流

來源:互聯網
上載者:User
代碼執行個體之純CSS代碼實現翻頁效果_經驗交流

純CSS實現翻頁效果,原理比較簡單,書籤配合隱藏。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh">  <head profile="http://www.w3.org/2000/08/w3c-synd/#">  <meta http-equiv="content-language" content="zh-cn" />  <meta http-equiv="content-type" content="text/html;charset=gb2312" />  <style>  dl {   position:absolute;   width:240px;   height:170px;   border:10px solid #eee;   }  dd {   margin:0;   width:240px;   height:170px;   overflow:hidden;   }  img {   border:1px solid black   }  dt {   position:absolute;   right:3px;   top:50px;   }  a {   display:block;   margin:1px;   width:20px;   height:20px;   text-align:center;   font:700 12px/20px "宋體",sans-serif;   color:#fff;   text-decoration:none;   background:#666;   border:1px solid #fff;   filter:alpha(opacity=40);   opacity:.4;   }  a:hover {   background:#000   }  </style>  </head>  <body>  <dl>  <dt><a href="#a" title="">1</a><a href="#b" title="">2</a><a href="#c" title="">3</a></dt>  <dd>  <img src="http://www.jb51.net/upload/2007322173319560.jpg" alt="" title="" id="a" />  <img src="http://www.jb51.net/upload/2007322173319816.jpg" alt="" title="" id="b" />  <img src="http://www.jb51.net/upload/2007322173320970.jpg" alt="" title="" id="c" />  </dd>  </dl>  </body>  </html>


同樣,舉一反三,可以做出其他的翻頁的效果。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh">  <head profile="http://www.w3.org/2000/08/w3c-synd/#">  <meta http-equiv="content-language" content="zh-cn" />  <meta http-equiv="content-type" content="text/html;charset=gb2312" />  <style>  dl {   position:absolute;   width:240px;   height:170px;   border:10px solid #eee;   }  dd {   margin:0;   width:240px;   height:170px;   overflow:hidden;   }  dt {   position:absolute;   right:1px;   }  ul {   margin:0;   padding:0;   width:260px;   height:170px;   list-style:none;   background:url("http://www.jb51.net/upload/2007322173320204.gif") no-repeat 75% 20px;   border:1px solid #ccc   }  #b {   background-position:75% center   }  #c {   background-position:75% 86%   }  li {   width:205px;   height:27px;   font:12px/27px "宋體",sans-serif;   white-space:nowrap;   overflow:hidden;   }  dt a {   display:block;   margin:1px;   width:30px;   height:56px;   text-align:center;   font:700 12px/55px "宋體",sans-serif;   color:#fff;   text-decoration:none;   background:#666;   }  dt a:hover {   background:orange   }  </style>  <head/>  <body>  <dl>  <dt><a href="#a" title="">新聞</a><a href="#b" title="">娛樂</a><a href="#c" title="">體育</a></dt>  <dd>  <ul id="a">   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>   <li>·<a href="" title="">國際新聞國際新聞國際新聞</a></li>  </ul>  <ul id="b">   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>   <li>·<a href="" title="">娛樂新聞娛樂新聞娛樂新聞</a></li>  </ul>  <ul id="c">   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>   <li>·<a href="" title="">體育新聞體育新聞體育新聞</a></li>  </ul>  </dd>  </dl>  </body>  </html>

以上就是代碼執行個體之純CSS代碼實現翻頁效果_經驗交流的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.