14 - CSS3 - 綜合案例 - 叮當(dāng)貓


本文是針對(duì)剛學(xué)編程的小白,都是一些基礎(chǔ)知識(shí),如果想了解更多深層一點(diǎn)的東西,歡迎移步本人博客!!
博客地址 點(diǎn)擊跳轉(zhuǎn)


< ! ---------- HTML ----------- >

<div class="wrapper">
    <!--叮當(dāng)貓整體-->
    <div class="doraemon">
        <!--頭部-->
        <div class="head">
            <!--眼睛-->
            <div class="eyes">
                <div class="eye left">
                    <!--眼珠-->
                            <div class="black bleft"></div>
                        </div>
                        <div class="eye right">
                            <div class="black bright"></div>
                        </div>
                    </div>
                    <!--臉部-->
                    <div class="face">
                        <!--白色臉底-->
                        <div class="white"></div>
                        <!--鼻子-->
                        <div class="nose">
                            <!--鼻子高光部分-->
                            <div class="light"></div>
                        </div>
                        <!--鼻子的豎線-->
                        <div class="nose_line"></div>
                        <!--嘴巴-->
                        <div class="mouth"></div>
                        <!--胡須-->
                        <div class="whiskers">
                            <div class="whisker rTop r160"></div>
                            <div class="whisker rMiddle"></div>
                            <div class="whisker rBottom r20"></div>
                            <div class="whisker lTop r20"></div>
                            <div class="whisker lMiddle"></div>
                            <div class="whisker lBottom r160"></div>
                        </div>
                    </div>
                </div>
                <!--脖子和鈴鐺-->
                <div class="choker">
                    <!--鈴鐺-->
                    <div class="bell">
                        <div class="bell_line"></div>
                        <div class="bell_circle"></div>
                        <div class="bell_under"></div>
                        <div class="bell_light"></div>
                    </div>
                </div>
                <!--身體-->
                <div class="bodys">
                    <!--肚子-->
                    <div class="body"></div>
                    <!--肚兜-->
                    <div class="wraps"></div>
                    <!--口袋-->
                    <div class="pocket"></div>
                    <!--遮住一半口袋滔驾,使其呈現(xiàn)半圓-->
                    <div class="pocket_mask"></div>
                </div>
                <!--右手-->
                <div class="hand_right">
                    <!--手臂-->
                    <div class="arm"></div>
                    <!--手掌-->
                    <div class="circle"></div>
                    <!--遮住手臂和身子交接處的線-->
                    <div class="arm_rewrite"></div>
                </div>
                <!--左手-->
                <div class="hand_left">
                    <div class="arm"></div>
                    <div class="circle"></div>
                    <div class="arm_rewrite"></div>
                </div>
                <!--腳-->
                <div class="foot">
                    <div class="left"></div>
                    <div class="right"></div>
                     <!--雙腳之間的縫隙-->
                    <div class="foot_rewrite"></div>
                </div>
            </div>
        </div>

< ! --------- Style --------------- >

<style>
        .wrapper{
                margin: 50px 0 0 500px;
            }
        .doraemon{
                position: relative;
            }

        .doraemon .head {
                        position:relative;
                        width: 320px;
                        height: 300px;
                        border-radius: 150px;
                        background: #07bbee;
                        background: -webkit-radial-gradient(right top,#fff 10%,#07bbee 20%,#10a6ce 75%,#000);
                        background: -moz-radial-gradient(right top,#fff 10%,#07bbee 20%,#10a6ce 75%,#000);
                        background: -ms-radial-gradient(right top,#fff 10%,#07bbee 20%,#10a6ce 75%,#000);
             border:2px solid #555;
             box-shadow:-5px 10px 15px rgba(0,0,0,0.45);
         }


            /*臉部*/
        .doraemon .face {
             position: relative; /*讓所有臉部元素可自由定位*/
             z-index: 2;    /*臉在頭部背景上面*/
         }
                    /*白色臉底*/
                    .doraemon .face .white {
                            width: 265px;       /*設(shè)置寬高*/
                            height: 195px;
                            border-radius: 150px;
                            position: absolute; /*進(jìn)行絕對(duì)定位*/
                            top: 75px;
                            left: 25px;
                            background: #fff;
                            /*此放射漸變也是使臉的左下角暗一些窥岩,看上去更真實(shí)*/
                            background: -webkit-radial-gradient(right top,#fff 75%,#eee 80%,#999 90%,#444);
                            background: -moz-radial-gradient(right top,#fff 75%,#eee 80%,#999 90%,#444);
                            background: –ms-radial-gradient(right top,#fff 75%,#eee 80%,#999 90%,#444);
                         }
                    /*鼻子*/
                     .doraemon .face .nose{
                             width:30px;
                             height:30px;
                             border-radius:15px;
                             background:#c93300;
                             border:2px solid #000;
                             position:absolute;
                             top:110px;
                             left:140px;
                             z-index:3;   /*鼻子在白色臉底下面*/
                         }
                    /*鼻子上的高光*/
                    .doraemon .face .nose .light {
                            width:10px;
                            height:10px;
                            border-radius: 5px;
                            box-shadow: 19px 8px 5px #fff;  /*通過陰影實(shí)現(xiàn)高光*/
                        }
                     /*鼻子下的線*/
                     .doraemon .face .nose_line{
                             width:3px;
                             height:100px;
                             background:#333;
                             position:absolute;
                             top:143px;
                             left:155px;
                             z-index:3;
                         }
                     /*嘴巴*/
                     .doraemon .face .mouth{
                             width:220px;
                             height:400px;
                             /*通過底邊框加上圓角模擬微笑嘴巴*/
                             border-bottom:3px solid #333;
                             border-radius:120px;
                             position:absolute;
                             top:-160px;
                             left:45px;
                         }
                     /*眼睛*/
                    .doraemon .eyes {
                            position: relative;
                            z-index: 3; /*眼睛在白色臉底下面*/
                        }
                    /*眼睛共同的樣式*/
                    .doraemon .eyes .eye{
                            width:72px;
                            height:82px;
                            background:#fff;
                            border:2px solid #000;
                            border-radius:35px 35px;
                            position:absolute;
                            top:40px;
                        }  /*眼珠*/
                    .doraemon .eyes .eye .black{
                            width:14px;
                            height:14px;
                            background:#000;
                            border-radius:7px;
                            position:absolute;
                            top:40px;
                        }
                 .doraemon .eyes .left{
                            left:82px;
                        }
                 .doraemon .eyes .right {
                            left: 156px;
                        }
                 .doraemon .eyes .eye .bleft {
                            left: 50px;
                        }

                 .doraemon .eyes .eye .bright {
                     left: 7px;
                 }


            /*胡須背景,主要用于擋住嘴巴的一部分,不要顯得太長*/
                    .doraemon .whiskers{
                         width:220px;
                         height:80px;
                         background:#fff;
                         border-radius:15px;
                         position:absolute;
                         top:120px;
                         left:45px;
                            z-index:2;   /*在鼻子和眼睛下面*/
                        }
                    /*所有胡子的公用樣式*/
                    .doraemon .whiskers .whisker {
                            width: 60px;
                            height: 2px;
                            background: #333;
                            position: absolute;
                            z-index: 2;
                        }
                    /*右上胡子*/
                    .doraemon .whiskers .rTop {
                            left: 165px;
                            top: 25px;
                        }
                    /*右中胡子*/
                    .doraemon .whiskers .rMiddle {
                            left: 167px;
                            top: 45px;
                        }
                    /*右下胡子*/
                    .doraemon .whiskers .rBottom {
                            left: 165px;
                            top: 65px;
                        }
                /*左上胡子*/
                .doraemon .whiskers .lTop {
                            left: 0;
                            top: 25px;
                        }
                    /*左中胡子*/
                    .doraemon .whiskers .lMiddle {
                            left: -2px;
                            top: 45px;
                        }
                    /*左下胡子*/
                    .doraemon .whiskers .lBottom {
                            left: 0;
                            top: 65px;
                        }
                    /*胡子旋轉(zhuǎn)角度*/
                    .doraemon .whiskers .r160 {
                            -webkit-transform: rotate(160deg);
                            -moz-transform: rotate(160deg);
                            -ms-transform: rotate(160deg);
                            -o-transform: rotate(160deg);
                            transform: rotate(160deg);
                        }
                    .doraemon .whiskers .r20 {
                            -webkit-transform: rotate(200deg);
                            -moz-transform: rotate(200deg);
                            -ms-transform: rotate(200deg);
                            -o-transform: rotate(200deg);
                            transform: rotate(200deg);
                        }



            /*圍脖*/
                    .doraemon .choker {
                        width: 230px;
                            height: 20px;
                            background: #c40;
                            /*線性漸變 讓圍巾看上去更自然*/
                            background: -webkit-gradient(linear,left top,left bottom,from(#c40),to(#800400));
                            background: -moz-linear-gradient(center top,#c40,#800400);
                            background: -ms-linear-gradient(center top,#c40,#800400);
                 border: 2px solid #000;
                    border-radius: 10px;
                    position: relative;
                    top: -40px;
                    left: 45px;
                    z-index: 4;
                }
           /*鈴鐺*/
           .doraemon .choker .bell {
                        width: 40px;
                        height: 40px;
                        _overflow: hidden; /*IE6 hack*/
                        border: 2px solid #000;
                        border-radius: 50px;
                        background: #f9f12a;
                        background: -webkit-gradient(linear, left top, left bottom, from(#f9f12a),color-stop(0.5, #e9e11a), to(#a9a100));
                        background: -moz-linear-gradient(top, #f9f12a, #e9e11a 75%,#a9a100);
           background: -ms-linear-gradient(top, #f9f12a, #e9e11a 75%,#a9a100);
                    box-shadow: -5px 5px 10px rgba(0,0,0,0.25);
                    position: absolute;
                    top: 5px;
                    left: 90px;
                }
          /*雙橫線*/
          .doraemon .choker .bell_line {
                    width: 36px;
                    height: 2px;
                    background: #f9f12a;
                    border: 2px solid #333;
                    border-radius: 3px 3px 0 0;
                    position: absolute;
                    top: 10px;
                }
          /*黑點(diǎn)*/
          .doraemon .choker .bell_circle{
              width:12px;
                        height:10px;
                        background:#000;
                        border-radius:5px;
                        position:absolute;
                        top:20px;
                        left:14px;
                    }
           /*黑點(diǎn)下的線*/
           .doraemon .choker .bell_under{
                        width: 3px;
                        height:15px;
                        background:#000;
                        position:absolute;
                        left: 18px;
                        top:27px;
                    }
           /*鈴鐺高光*/
           .doraemon .choker .bell_light{
                        width:12px;
                        height:12px;
                        border-radius:10px;
                        box-shadow:19px 8px 5px #fff;
                        position:absolute;
                        top:-5px;
                        left:5px;
                        opacity:0.7;
                    }
           /*身子*/
           .doraemon .bodys {
                        position: relative;
                        top: -310px;
                    }
           /*肚子*/
                    .doraemon .bodys .body {
                            width: 220px;
                            height: 165px;
                            background: #07beea;
                            background: -webkit-gradient(linear,right top,left top,from(#07beea),color-stop(0.5, #0073b3),color-stop(0.75,#00b0e0), to(#0096be));
                            background: -moz-linear-gradient(right center,#07beea,#0073b3 50%,#00b0e0 75%,#0096be 100%);
                            background: -ms-linear-gradient(right center,#07beea,#0073b3 50%,#00b0e0 75%,#0096be 100%);
                            border:2px solid #333;
                            position:absolute;
                            top:265px;
                            left:50px;
                        }
                    /*白色肚兜*/
                        .doraemon .bodys .wraps {
                              width: 170px;
                              height: 170px;
                              background: #fff;
                              background: -webkit-gradient(linear, right top, left bottom, from(#fff),color-stop(0.75,#fff),color-stop(0.83,#eee),color-stop(0.90,#999),color-stop(0.95,#444), to(#000));
                              background: -moz-linear-gradient(right top,#fff,#fff 75%,#eee 83%,#999 90%,#444 95%,#000);
                              background: -ms-linear-gradient(right top,#fff,#fff 75%,#eee 83%,#999 90%,#444 95%,#000);
                              border: 2px solid #000;
                                border-radius: 85px;
                                position: absolute;
                                left: 72px;
                                top: 230px;
                            }
                        /*口袋*/
                        .doraemon .bodys .pocket {
                                width: 130px;
                                height: 130px;
                                border-radius: 65px;
                                background: #fff;
                                background: -webkit-gradient(linear, right top, left bottom, from(#fff),color-stop(0.70,#fff),color-stop(0.75,#f8f8f8),color-stop(0.80,#eee),color-stop(0.88,#ddd), to(#fff));
                                background: -moz-linear-gradient(right top, #fff, #fff 70%,#f8f8f8 75%,#eee 80%,#ddd 88%, #fff);
                                background: -ms-linear-gradient(right top, #fff, #fff 70%,#f8f8f8 75%,#eee 80%,#ddd 88%, #fff);
                                border: 2px solid #000;
                                position:absolute;
                                top: 250px;
                                left: 92px;
                            }
                        /*擋住口袋一半*/
                        .doraemon .bodys .pocket_mask {
                                width: 134px;
                                height: 60px;
                                background:#fff;
                                border-bottom: 2px solid #000;
                                position:absolute;
                                top: 259px;
                                left: 92px;
                           }


            /*左右手*/
            .doraemon .hand_right, .doraemon .hand_left {
                    height: 100px;
                    width: 100px;
                    position: absolute;
                    top: 272px;
                    left: 248px;
                }
            /*左手*/
            .doraemon .hand_left {
                        left: -10px;
                    }
            /*手臂公共部分*/
            .doraemon .arm {
                        width:80px;
                        height:50px;
                        background: #07beea;
                        background: -webkit-gradient(linear, left top, left bottom, from(#07beea),color-stop(0.85,#07beea), to(#555));
                        background: -moz-linear-gradient(center top, #07BEEA, #07BEEA 85%, #555);
                        background: -ms-linear-gradient(center top, #07BEEA, #07BEEA 85%, #555);
                        border: 1px solid #000000;
                        box-shadow: -10px 7px 10px rgba(0, 0, 0, 0.35);
                        z-index: -1;
                        position: relative;
                    }
            /*右手手臂*/
            .doraemon .hand_right .arm {
                        top: 17px;
                        -webkit-transform: rotate(35deg);
                        -moz-transform: rotate(35deg);
                        -ms-transform: rotate(35deg);
                        -o-transform: rotate(35deg);
                        transform: rotate(35deg);
                    }
            /*左手手臂*/
            .doraemon .hand_left .arm {
                        top: 17px;
                        background: #0096be;   /*背光一面使用純色洗贰,使其有立體感*/
                        box-shadow: 5px -7px 10px rgba(0, 0, 0, 0.25);
                        -webkit-transform: rotate(145deg);
                        -moz-transform: rotate(145deg);
                        -ms-transform: rotate(145deg);
                        -o-transform: rotate(145deg);
                        transform: rotate(145deg);
                    }
            /*圓形手掌公共部分*/
            .doraemon .circle {
                        width: 60px;
                        height: 60px;
                        border-radius: 30px;
                        border: 2px solid #000;
                        background: #fff;
                        background: -webkit-gradient(linear, right top, left bottom, from(#fff),color-stop(0.5,#fff),color-stop(0.70,#eee),color-stop(0.8,#ddd), to(#999));
                        background: -moz-linear-gradient(right top, #fff, #fff 50%, #eee 70%, #ddd 80%,#999);
                        background: -ms-linear-gradient(right top, #fff, #fff 50%, #eee 70%, #ddd 80%,#999);
                        position: absolute;
                    }
            /*右手手掌*/
            .doraemon .hand_right .circle {
                        left: 40px;
                        top: 32px;
                    }
            /*左手手掌*/
            .doraemon .hand_left .circle {
                        left: -20px;
                        top: 32px;
                    }
            /*手臂和身體結(jié)合處污淋,使用背景遮住邊框*/
            .doraemon .arm_rewrite {
                        height: 45px;
                        width: 5px;
                        background: #07beea;
                        position: relative;
                    }
            /*右手結(jié)合處*/
            .doraemon .hand_right .arm_rewrite {
                        top: -45px;
                        left: 22px;
                    }
            /*左手結(jié)合處*/
            .doraemon .hand_left .arm_rewrite {
                        top: -45px;
                        left: 60px;
                        background: #0096be; /*同理,背光一面使用純色叶洞,使其有立體感*/
                    }
            /*腳部*/
            .doraemon .foot {
                        width: 280px;
                        height: 40px;
                        position: relative;
                        top: 55px;
                        left: 20px;
                    }
            /*左右腳共同樣式*/
            .doraemon .foot .left, .doraemon .foot .right {
                        width: 125px;
                        height: 30px;
                        background: #fff;
                        background: -webkit-gradient(linear, right top, left bottom, from(#fff),color-stop(0.75,#fff),color-stop(0.85,#eee), to(#999));
                        background: -moz-linear-gradient(right top, #fff, #fff 75%, #eee 85%, #999);
                        background: -ms-linear-gradient(right top, #fff, #fff 75%, #eee 85%, #999);
                        border: 2px solid #333;
                        border-radius: 80px 60px 60px 40px;
                        box-shadow: -6px 0 10px rgba(0, 0, 0, 0.35);
                        position: relative;
                    }
                .doraemon .foot .left {
                        left: 8px;
                        top: 65px;
                    }

                .doraemon .foot .right {
                        top: 31px;
                        left: 141px;
                    }
                /*雙腳之間的縫隙鲫凶,加陰影使用立體感*/
                .doraemon .foot .foot_rewrite {
                        width: 20px;
                        height: 10px;
                        background: #fff;
                        background: -webkit-gradient(linear, right top, left bottom, from(#666),color-stop(0.83,#fff), to(#fff));
                        background: -moz-linear-gradient(right top, #666, #fff 83%, #fff);
                        background: -ms-linear-gradient(right top, #666, #fff 83%, #fff);
                        /*制作半圓效果*/
                        border: 2px solid #000;
                        border-bottom: none;
                        border-radius: 40px 40px 0 0;
                        position: relative;
                        top: -11px;
                        left: 130px;
                        _left: 127px;
                    }



            /*眼珠*/
           .doraemon .eyes .eye .black {
                   width: 14px;
                   height: 14px;
                   background: #000;
                   border-radius: 7px;
                   position: absolute;
                   top: 40px;
                   -webkit-animation: eyemove 3s linear infinite;
                        -moz-animation: eyemove 3s linear infinite;
                        -ms-animation: eyemove 3s linear infinite;
                        -o-animation: eyemove 3s linear infinite;
                        animation: eyemove 3s linear infinite;
                    }

           /*讓眼睛動(dòng)起來*/
           @-webkit-keyframes eyemove {
               70%{
                       margin:0 0 0 0;
                   }
               80% {
                       margin: -22px 0 0 0;
                   }

               85% {
                       margin: -22px 0 0 5px;
                   }

               90% {
                       margin: -22px 10px 0 0;
                   }

               93% {
                       margin: -22px 0 0 0;
                   }

               96% {
                       margin: 0 0 0 0;
                   }
           }

           @-moz-keyframes eyemove {
               70% {
                       margin: 0 0 0 0;
                   }

               80% {
                       margin: -22px 0 0 0;
                   }

               85% {
                       margin: -22px 0 0 5px;
                   }

               90% {
                       margin: -22px 10px 0 0;
                   }

               93% {
                       margin: -22px 0 0 0;
                   }

               96% {
                       margin: 0 0 0 0;
                   }
           }

           @-o-keyframes eyemove {
               70% {
                       margin: 0 0 0 0;
                   }

               80% {
                       margin: -22px 0 0 0;
                   }

               85% {
                       margin: -22px 0 0 5px;
                   }

               90% {
                       margin: -22px 10px 0 0;
                   }

               93% {
                       margin: -22px 0 0 0;
                   }

               96% {
                       margin: 0 0 0 0;
                   }
           }
           @keyframes eyemove {
               70% {
                       margin: 0 0 0 0;
                   }

               80% {
                       margin: -22px 0 0 0;
                        }

                   85% {
                            margin: -22px 0 0 5px;
                        }

                   90% {
                            margin: -22px 10px 0 0;
                        }

                   93% {
                            margin: -22px 0 0 0;
                        }

                   96% {
                            margin: 0 0 0 0;
                        }
               }
</style>

< ! --------- 效果展示 ---------- >

**叮當(dāng)貓**
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市衩辟,隨后出現(xiàn)的幾起案子螟炫,更是在濱河造成了極大的恐慌,老刑警劉巖艺晴,帶你破解...
    沈念sama閱讀 211,496評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件昼钻,死亡現(xiàn)場離奇詭異,居然都是意外死亡封寞,警方通過查閱死者的電腦和手機(jī)然评,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,187評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來狈究,“玉大人沾瓦,你說我怎么就攤上這事∏矗” “怎么了贯莺?”我有些...
    開封第一講書人閱讀 157,091評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長宁改。 經(jīng)常有香客問我缕探,道長轻黑,這世上最難降的妖魔是什么走趋? 我笑而不...
    開封第一講書人閱讀 56,458評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮艾岂,結(jié)果婚禮上谜喊,老公的妹妹穿的比我還像新娘潭兽。我一直安慰自己,他們只是感情好斗遏,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,542評(píng)論 6 385
  • 文/花漫 我一把揭開白布山卦。 她就那樣靜靜地躺著,像睡著了一般诵次。 火紅的嫁衣襯著肌膚如雪账蓉。 梳的紋絲不亂的頭發(fā)上枚碗,一...
    開封第一講書人閱讀 49,802評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音铸本,去河邊找鬼肮雨。 笑死,一個(gè)胖子當(dāng)著我的面吹牛箱玷,可吹牛的內(nèi)容都是我干的怨规。 我是一名探鬼主播,決...
    沈念sama閱讀 38,945評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼锡足,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼椅亚!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起舱污,我...
    開封第一講書人閱讀 37,709評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤呀舔,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后扩灯,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體媚赖,經(jīng)...
    沈念sama閱讀 44,158評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,502評(píng)論 2 327
  • 正文 我和宋清朗相戀三年珠插,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了惧磺。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,637評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡捻撑,死狀恐怖磨隘,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情顾患,我是刑警寧澤番捂,帶...
    沈念sama閱讀 34,300評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站江解,受9級(jí)特大地震影響设预,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜犁河,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,911評(píng)論 3 313
  • 文/蒙蒙 一鳖枕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧桨螺,春花似錦宾符、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,744評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春则奥,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背狭园。 一陣腳步聲響...
    開封第一講書人閱讀 31,982評(píng)論 1 266
  • 我被黑心中介騙來泰國打工读处, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人唱矛。 一個(gè)月前我還...
    沈念sama閱讀 46,344評(píng)論 2 360
  • 正文 我出身青樓罚舱,卻偏偏與公主長得像,于是被迫代替她去往敵國和親绎谦。 傳聞我的和親對(duì)象是個(gè)殘疾皇子管闷,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,500評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容