当前位置:首页 > 网页特效 > css样式 >

CSS画梅花2扑克牌

时间:2014-01-06 09:27 来源:互联网 作者:源码搜藏 收藏 推荐

运行代码 保存代码 复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
  • CSS画梅花2扑克牌,边缘部分带阴影效果,个人觉得是挺逼真的扑克牌效果。目的是演示CSS强大的布局排版功能,不要再抱怨CSS的布局功能不强大了。
  • <html>
    <head>
    <title>CSS画梅花扑克牌</title>
    <style>
    .card { background-color: #fff; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); float: left; height: 280px; margin: 0 15px 15px 0; position: relative; width: 200px; z-index: 2; }
    .card .corner { line-height: 1; overflow: hidden; position: absolute; text-align: center; }
    .card .corner span { display: block; font-size: 24px; font-weight: bold; }
    .card .corner .number { font-size: 32px; height: 32px; line-height: 32px; }
    .card .corner.top { left: 8px; top: 12px; }
    .card .corner.bottom { bottom: 12px; right: 8px; -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
    .card .suit { font-size: 64px; font-weight: bold; height: 60px; line-height: 60px; overflow: hidden; position: absolute; text-align: center; width: 50px; }
    .card .top_center { left: 76px; top: 24px; }
    .card .bottom_center { bottom: 24px; left: 76px; -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
    .card .back { background-color: red; -webkit-transform: rotateY(180deg); }
    </style>
    <body>
    <div class="card two">
           <div class="front">
             <div class="corner top">
               <span class="number">2</span>
               <span>&#9827;</span>
             </div>
             <span class="suit top_center">&#9827;</span>
             <span class="suit bottom_center">&#9827;</span>
             <div class="corner bottom">
               <span class="number">2</span>
               <span>&#9827;</span>
             </div>
           </div>
           <div class="back"> 
           </div>
    </div>
    </body>
    </html>

由源码搜藏网整理,转载请注明出处https://www.codesocang.com/tx-css/6538.html

css样式下载排行

最新文章