欧美精品在线一区二区三区_亚洲女同精品视频_日韩一区免费_国产欧美久久久精品免费_国产这里只有精品_僵尸再翻生在线观看_久久99精品国产一区二区三区_亚洲免费一区二区_女教师淫辱の教室蜜臀av软件_中文字幕国产一区二区

巧用偽元素before和after制作絢麗效果

2020-7-27    seo達(dá)人

CSS :before 選擇器

定義和說明

:before 選擇器向選定的元素前插入內(nèi)容。

使用content 屬性來指定要插入的內(nèi)容。


CSS :after 選擇器

定義和說明

:after 選擇器向選定的元素之后插入內(nèi)容。

使用content 屬性來指定要插入的內(nèi)容。


這兩個(gè)偽元素會(huì)在真正頁面元素之前和之后插入一個(gè)額外的元素,從技術(shù)角度上講,它們與下面的HTML標(biāo)記是等效的。


1.偽類光圈



<div class="hover-circle">CSS</div>

.hover-circle {

 width: 100%;

 display: flex;

 align-items: center;

 justify-content: center;

 height: 100%;

 font-size: 3rem;

 letter-spacing: 0.3rem;

 font-weight: bold;

 position: relative;

 cursor: pointer;

 color: #666;

}


.hover-circle::before {

 width: 8.5rem;

 height: 8.5rem;

 border: 3px solid pink;

 content: "";

 border-radius: 50%;

 position: absolute;

 opacity: 0;

}


.hover-circle::after {

 width: 7.2rem;

 height: 7.2rem;

 border: 6px solid pink;

 content: "";

 border-radius: 50%;

 position: absolute;

 opacity: 0;

}


.hover-circle:hover::before,

.hover-circle:hover::after {

 animation-duration: 0.8s;

 animation-delay: 0.2s;

 animation: circle 0.8s;

}


@keyframes circle {

 0% {

   opacity: 0;

   scale: 1;

 }


 25% {

   opacity: 0.25;

 }


 50% {

   opacity: 0.5;

   scale: 1.03;

 }


 75% {

   opacity: 0.75;

 }


 100% {

   opacity: 1;

   scale: 1.03;

 }

}

2.偽類括號(hào)效果



<div class="hover-text">CSS</div>

.hover-text {

 width: 100%;

 display: flex;

 align-items: center;

 justify-content: center;

 height: 100%;

 font-size: 3rem;

 letter-spacing: 0.3rem;

 font-weight: bold;

 position: relative;

 cursor: pointer;

 color: #666;

}


.hover-text::before {

 content: "[";

 position: absolute;

 left: 0.8rem;

 opacity: 0;

 color: #999;

}


.hover-text::after {

 content: "]";

 position: absolute;

 right: 0.8rem;

 opacity: 0;

 color: #999;

}


.hover-text:hover::before {

 animation-duration: 0.8s;

 animation-delay: 0.2s;

 animation: hovertext1 0.8s;

}


.hover-text:hover::after {

 animation-duration: 0.8s;

 animation-delay: 0.2s;

 animation: hovertext2 0.8s;

}


@keyframes hovertext1 {

 0% {

   opacity: 0;

   left: 0.8rem;

 }


 100% {

   opacity: 1;

   left: 0.5rem;

 }

}


@keyframes hovertext2 {

 0% {

   opacity: 0;

   right: 0.8rem;

 }


 100% {

   opacity: 1;

   right: 0.5rem;

 }

}

3.炫酷絲帶效果

雙邊絲帶



<div class="tc">

   <div class="title1"><span>距離結(jié)束還有10天</span></div>

</div>

.title1 {

 position: relative;

 display: inline-block;

}


.title1 span {

 position: relative;

 z-index: 2;

 display: inline-block;

 padding: 0 15px;

 height: 32px;

 line-height: 32px;

 background-color: #dc5947;

 color: #fff;

 font-size: 16px;

 box-shadow: 0 10px 6px -9px rgba(0, 0, 0, 0.6);

}


.title1 span::before,

.title1 span::after {

 position: absolute;

 bottom: -6px;

 border-width: 3px 5px;

 border-style: solid;

 content: "";

}


.title1 span::before {

 left: 0;

 border-color: #972f22 #972f22 transparent transparent;

}


.title1 span::after {

 right: 0;

 border-color: #972f22 transparent transparent #972f22;

}


.title1::before,

.title1::after {

 position: absolute;

 top: 6px;

 content: "";

 border-style: solid;

 border-color: #dc5947;

}


.title1::before {

 left: -32px;

 border-width: 16px 26px 16px 16px;

 border-left-color: transparent;

}


.title1::after {

 right: -32px;

 border-width: 16px 16px 16px 26px;

 border-right-color: transparent;

}

右邊絲帶



<span class="title2">距離結(jié)束還有10天</span>

.title2 {

 position: relative;

 display: inline-block;

 padding: 0 15px;

 height: 32px;

 line-height: 32px;

 background-color: #dc5947;

 color: #fff;

 font-size: 16px;

}


.title2::before {

 position: absolute;

 top: -4px;

 left: 0;

 border-width: 2px 4px;

 border-style: solid;

 border-color: transparent #972f22 #972f22 transparent;

 content: "";

}


.title2::after {

 position: absolute;

 top: 0;

 right: -8px;

 border-width: 16px 8px 16px 0;

 border-style: solid;

 border-color: #dc5947 transparent #dc5947 #dc5947;

 content: "";

}

箭頭絲帶



<span class="title3">距離結(jié)束還有10天</span>

.title3 {

 position: relative;

 display: inline-block;

 margin-right: 16px;

 padding: 0 10px;

 height: 32px;

 line-height: 32px;

 background-color: #dc5947;

 color: #fff;

 font-size: 16px;

}


.title3::before {

 position: absolute;

 top: 0;

 left: -16px;

 border-width: 16px 16px 16px 0;

 border-style: solid;

 border-color: transparent #dc5947 transparent transparent;

 content: "";

}


.title3::after {

 position: absolute;

 top: 0;

 right: -16px;

 border-width: 16px 16px 16px 0;

 border-style: solid;

 border-color: #dc5947 transparent #dc5947 #dc5947;

 content: "";

}

多個(gè)箭頭絲帶



<div class="mt30 pl16">

   <span class="title3">距離結(jié)束還有10天</span>

   <span class="title3 ml5">距離結(jié)束還有10天</span>

   <span class="title3 ml5">距離結(jié)束還有10天</span>

</div>

.title4 {

 width: 200px;

 height: 140px;

 position: absolute;

 top: -8px;

 left: -8px;

 overflow: hidden;

}


.title4::before {

 position: absolute;

 left: 124px;

 border-radius: 8px 8px 0 0;

 width: 16px;

 height: 8px;

 background-color: #972f22;

 content: "";

}


.title4::after {

 position: absolute;

 left: 0;

 top: 124px;

 border-radius: 0 8px 8px 0;

 width: 8px;

 height: 16px;

 background-color: #972f22;

 content: "";

}


.title4 span {

 display: inline-block;

 text-align: center;

 width: 200px;

 height: 40px;

 line-height: 40px;

 position: absolute;

 top: 30px;

 left: -50px;

 z-index: 2;

 overflow: hidden;

 -ms-transform: rotate(-45deg);

 -moz-transform: rotate(-45deg);

 -webkit-transform: rotate(-45deg);

 -o-transform: rotate(-45deg);

 transform: rotate(-45deg);

 border: 1px dashed #fff;

 box-shadow: 0 0 0 3px #dc5947, 0 14px 7px -9px rgba(0, 0, 0, 0.6);

 background-color: #dc5947;

 color: #fff;

}

懸掛標(biāo)簽



<div class="pr mt30" style="background-color: #eee; height: 200px;">

   <div class="title4"><span>企業(yè)熱門動(dòng)態(tài)</span></div>

   <div class="title5"><span>企業(yè)熱門動(dòng)態(tài)</span></div>

</div>

.title5 {

 width: 140px;

 height: 200px;

 position: absolute;

 top: -8px;

 right: -8px;

 overflow: hidden;

}


.title5::before {

 position: absolute;

 right: 124px;

 border-radius: 8px 8px 0 0;

 width: 16px;

 height: 8px;

 background-color: #972f22;

 content: "";

}


.title5::after {

 position: absolute;

 right: 0;

 top: 124px;

 border-radius: 0 8px 8px 0;

 width: 8px;

 height: 16px;

 background-color: #972f22;

 content: "";

}


.title5 span {

 display: inline-block;

 text-align: center;

 width: 200px;

 height: 40px;

 line-height: 40px;

 position: absolute;

 top: 30px;

 right: -50px;

 z-index: 2;

 overflow: hidden;

 -ms-transform: rotate(45deg);

 -moz-transform: rotate(45deg);

 -webkit-transform: rotate(45deg);

 -o-transform: rotate(45deg);

 transform: rotate(45deg);

 border: 1px dashed #fff;

 box-shadow: 0 0 0 3px #dc5947, 0 14px 7px -9px rgba(0, 0, 0, 0.6);

 background-color: #dc5947;

 color: #fff;

}

4.幾何圖形

三角形



<div class="triangle"></div>

.triangle {

 width: 0;

 height: 0;

 margin: 50px auto;

 border-bottom: 100px solid #dc5947;

 border-left: 50px solid transparent;

 border-right: 50px solid transparent;

 cursor: pointer;

 transform: scale(1.2);

 transition: 0.5s;

}

五角星



<div class="pentagram"></div>

.pentagram {

 width: 0;

 height: 0;

 margin: 100px auto;

 position: relative;

 border-bottom: 70px solid #dc5947;

 border-left: 100px solid transparent;

 border-right: 100px solid transparent;

 -webkit-transform: rotate(35deg);

 -moz-transform: rotate(35deg);

 -ms-transform: rotate(35deg);

 -o-transform: rotate(35deg);

 transform: rotate(35deg);

 -webkit-transform: scale(1), rotate(35deg);

 -moz-transform: scale(1), rotate(35deg);

 -ms-transform: scale(1), rotate(35deg);

 -o-transform: scale(1), rotate(35deg);

 transform: scale(1), rotate(35deg);

}


.pentagram::after {

 content: "";

 width: 0;

 height: 0;

 border-bottom: 70px solid #dc5947;

 border-left: 100px solid transparent;

 border-right: 100px solid transparent;

 -webkit-transform: rotate(-70deg);

 -moz-transform: rotate(-70deg);

 -ms-transform: rotate(-70deg);

 -o-transform: rotate(-70deg);

 transform: rotate(-70deg);

 position: absolute;

 top: 0px;

 left: -100px;

}


.pentagram::before {

 content: "";

 width: 0;

 height: 0;

 border-bottom: 80px solid #dc5947;

 border-left: 30px solid transparent;

 border-right: 30px solid transparent;

 -webkit-transform: rotate(-35deg);

 -moz-transform: rotate(-35deg);

 -ms-transform: rotate(-35deg);

 -o-transform: rotate(-35deg);

 transform: rotate(-35deg);

 position: absolute;

 top: -45px;

 left: -60px;

}

5.水滴



<div class="drop"></div>

.drop::after {

 content: "";

 position: absolute;

 width: 30px;

 height: 20px;

 border-radius: 50%;

 background-color: #ace3ff;

 margin: 100px auto;

 top: -50px;

 left: 25px;

 box-shadow: 5px 12px 4px #ace3ff, -5px 11px 4px #ace3ff, 0px 14px 4px #4d576e;

 -webkit-transform: rotate(35deg);

}


.drop::before {

 content: "";

 position: absolute;

 width: 0px;

 height: 0px;

 border-style: solid;

 border-width: 0 40px 50px 40px;

 border-color: transparent transparent #ace3ff transparent;

 top: -30px;

 left: 10px;

}


.drop {

 width: 100px;

 height: 100px;

 border-radius: 50%;

 background-color: #ace3ff;

 position: relative;

 margin: 100px auto;

 box-shadow: 0px 6px 0 #3f475a;

}

6 絢麗流動(dòng)邊框





<div class="box-line1"></div>

.box-line2,

.box-line2::before,

.box-line2::after {

 position: absolute;

 top: 0;

 bottom: 0;

 left: 0;

 right: 0;

}


.box-line2 {

 width: 200px;

 height: 200px;

 margin: auto;

 color: #69ca62;

 box-shadow: inset 0 0 0 1px rgba(105, 202, 98, 0.5);

}


.box-line2::before,

.box-line2::after {

 content: "";

 z-index: 99;

 margin: -5%;

 box-shadow: inset 0 0 0 2px;

 animation: clipMe 8s linear infinite;

}


.box-line2::before {

 animation-delay: -4s;

}


.box-line2:hover::after,

.box-line2:hover::before {

 background-color: rgba(255, 0, 0, 0.3);

}


@keyframes clipMe {


 0%,

 100% {

   clip: rect(0px, 220px, 2px, 0px);

 }


 25% {

   clip: rect(0px, 2px, 220px, 0px);

 }


 50% {

   clip: rect(218px, 220px, 220px, 0px);

 }


 75% {

   clip: rect(0px, 220px, 220px, 218px);

 }

}


@keyframes surround {


 0%,

 100% {

   clip: rect(0px, 220px, 2px, 0px);

 }


 25% {

   clip: rect(0px, 2px, 220px, 0px);

 }


 50% {

   clip: rect(218px, 220px, 220px, 0px);

 }


 75% {

   clip: rect(0px, 220px, 220px, 218px);

 }

}


.box-line1:before,

.box-line1:after {

 position: absolute;

 top: 0;

 left: 0;

 bottom: 0;

 right: 0;

 content: "";

 z-index: 99;

 margin: -5%;

 animation: surround linear infinite 8s;

 box-shadow: inset 0 0 0 2px #69ca62;

}


.box-line1:before {

 animation-delay: -4s;

}


.box-line1 {

 border: 1px solid #69ca62;

 position: absolute;

 left: 500px;

 top: 200px;

 margin: auto;

 width: 200px;

 height: 200px;

 margin: auto;

}

7.Tooltip提示



<div class="tip" data-tip="CSS偽類">CSS偽類</div>

.tip::after {

 content: attr(data-tip);

 display: none;

 position: absolute;

 padding: 5px 10px;

 left: 15%;

 bottom: 100%;

 width: 150px;

 margin-bottom: 12px;

 transform: translateX(-50%);

 font-size: 12px;

 background: #000;

 color: #fff;

 cursor: default;

 border-radius: 4px;

}


.tip::before {

 content: " ";

 position: absolute;

 display: none;

 left: 15%;

 bottom: 100%;

 transform: translateX(-50%);

 margin-bottom: 3px;

 width: 0;

 height: 0;

 border-left: 6px solid transparent;

 border-right: 6px solid transparent;

 border-top: 9px solid #000;

}


.tip:hover::after,

.tip:hover::before {

 display: block;

}

8.CSS 偽類盒子陰影

使用偽元素:before and :after制作出了完美驚艷的相片陰影效果。其中的技巧是使用絕對(duì)定位固定偽元素,然后給它們的z-index一個(gè)負(fù)值,以背景出現(xiàn)。






<div class="box effect2">

   <h3>CSS 偽類盒子陰影</h3>

</div>

.effect2 {

   position: relative;

}


.effect2::before, .effect2::after {

   z-index: -1;

   position: absolute;

   content: "";

   bottom: 15px;

   left: 10px;

   width: 50%;

   top: 80%;

   max-width: 300px;

   background: #777;

   -webkit-box-shadow: 0 15px 10px #777;

   -moz-box-shadow: 0 15px 10px #777;

   box-shadow: 0 15px 10px #777;

   -webkit-transform: rotate(-3deg);

   -moz-transform: rotate(-3deg);

   -o-transform: rotate(-3deg);

   -ms-transform: rotate(-3deg);

   transform: rotate(-3deg);

}

.effect2::after {

   -webkit-transform: rotate(3deg);

   -moz-transform: rotate(3deg);

   -o-transform: rotate(3deg);

   -ms-transform: rotate(3deg);

   transform: rotate(3deg);

   right: 10px;

   left: auto;

}

CSS Box 陰影效果


9.Tabs當(dāng)前激活狀態(tài)



   <div class="sm-box flex">

       <div class="menu-tabs active">首頁</div>

       <div class="menu-tabs">新聞</div>

       <div class="menu-tabs">視頻</div>

       <div class="menu-tabs">圖片</div>

   </div>

.menu-tabs {

 display: block;

 padding: 0.25rem 1.5rem;

 clear: both;

 font-weight: 400;

 color: #212529;

 text-align: inherit;

 white-space: nowrap;

 background-color: transparent;

 width: 50px;

 border: 0;

 height: 35px;

 justify-content: center;

 display: flex;

 cursor: pointer;

}


.menu-tabs:hover {

 color: #20a884;

 position: relative;

}


.menu-tabs:hover:after {

 position: absolute;

 content: "";

 border: 1px solid #20a884;

 width: 3rem;

 left: 0;

 bottom: 0;

 margin-left: 50%;

 transform: translateX(-50%);

}


.active {

 position: relative;

 color: #20a884;

}


.flex {

 display: flex;

}


.active::after {

 position: absolute;

 content: "";

 border: 1px solid #20a884;

 width: 3rem;

 left: 0;

 bottom: 0;

 margin-left: 50%;

 transform: translateX(-50%);

}

10.偽元素模糊背景



<div class="container">

  <div class="overlay">

     <h1>A blurred overlay</h1>

    <p>... mask or whatever

    <br>that is responsive and could be cross-browser compatible back to IE9</p>

  </div>

</div>

.container {

 width: 100%;

 height: 100%;

 margin: 0;

}


.container,

.overlay:before {

 background: url(https://wow.techbrood.com/assets/landing.jpg) no-repeat fixed 0 0 / cover;

}


.container {

 -webkit-box-align: center;

 -webkit-align-items: center;

 -ms-flex-align: center;

 align-items: center;

 display: -webkit-box;

 display: -webkit-flex;

 display: -ms-flexbox;

 display: flex;

 -webkit-box-pack: center;

 -webkit-justify-content: center;

 -ms-flex-pack: center;

 justify-content: center;

}


.overlay {

 max-height: 200px;

 margin: 0 auto;

 max-width: 768px;

 padding: 50px;

 position: relative;

 color: white;

 font-family: "Lato";

 position: relative;

 text-align: center;

 z-index: 0;

}


.overlay:before {

 content: "";

 -webkit-filter: blur(100px);

 filter: blur(100px);

 height: 100%;

 left: 0;

 position: absolute;

 top: 0;

 width: 100%;

 z-index: -1;

}

11.藍(lán)湖文字



<span class="lanhu_text">

    本站由叫我詹躲躲提供技術(shù)支持

</span>

.lanhu_text {

 position: relative;

 color: #2878ff;

}


.lanhu_text::before {

 content: "";

 width: 80px;

 height: 20px;

 position: absolute;

 left: -86px;

 top: 0;

 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAABCAYAAABJwyn/AAAAjElEQVQoU22NSw7CQAxDX8ahICF2HIDTcf9d1c8kaDpthQSL6CmxHRuk8cZfMxqf6DGh+Y5uCxquaB7xdUCXilZHWvBorEiOaqAKrkRRUEmUOw283TKRRb9b4GnIEpWmGYrA237kDh1w6J5N7zzzZv13gtuvT7t++jefUTYmwvpk7v3fPaCzn//9LfsBvRpHnliu+xMAAAAASUVORK5CYII=) 0 no-repeat;

}


.lanhu_text::after {

 content: "";

 width: 80px;

 height: 20px;

 position: absolute;

 right: -86px;

 top: 0;

 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAABCAYAAABJwyn/AAAAhElEQVQoU22OSw7CQAxDXzJDWbHiEFyRJQflFggJSjyDph9oC6snx45lO52rrKJqzIyNlkFUPv6vnv+3uW9vrPpBq77/uWFPAXnrnfYVQ16JiWq0stjvxKB9vDc/MeaXWo5cqDEFUkKpEuEoB3ollHvUZ9QV4rFD3R3d9ujwJK5HxAW9AStemAIOwCNlAAAAAElFTkSuQmCC) 100% no-repeat;

}

12 主要標(biāo)題



<div class="first-title">服務(wù)項(xiàng)目</div>

.first-title {

 position: relative;

 color: #a98661;

 font-weight: 400;

 font-size: 30px;

 text-align: center;

}


.first-title::before,

.first-title::after {

 position: absolute;

 content: "";

 width: 110px;

 border-bottom: 1px solid #a98661;

 top: 50%;

 transform: translateY(-50%);

}


.first-title::before {

 left: 100px;

}


.first-title::after {

 right: 100px;

}

13.鼠標(biāo)浮層遮罩浮層



<div class="black-mask"></div>

.black-mask {

 position: relative;

 height: 100%;

 width: 100%;

 cursor: pointer;

}


.black-mask:hover {

 transition-duration: 1s;

 scale: 1.02;

}


.black-mask:hover:before {

 object-fit: cover;

}


.black-mask:hover:after {

 height: 100%;

 opacity: 1;

 transition-duration: 1s;

 display: flex;

 align-items: flex-end;

 padding: 0 30px 15px;

}


.black-mask::before {

 position: absolute;

 content: "";

 background: url(https://dcdn.it120.cc/2019/11/14/f17c5848-6d1f-4254-b3ba-64d3969d16b6.jpg) no-repeat;

 background-size: 100% 100%;

 width: 100%;

 height: 100%;

}


.black-mask::after {

 position: absolute;

 content: "霧在微風(fēng)的吹動(dòng)下滾來滾去,像冰峰雪山,似蓬萊仙境,如海市蜃樓,使人覺得飄然欲仙。山河景色在霧的裝點(diǎn)下,變得更加美麗。遠(yuǎn)處的七連山巍峨挺拔,它們仿佛成了神仙住的寶山,令人神往。近處池塘邊時(shí)時(shí)飄來霧氣,在初升陽光的照耀下,呈現(xiàn)出赤、橙、黃、綠、青、藍(lán)、紫七種色彩。......";

 width: 90%;

 height: 0%;

 bottom: 0;

 right: 0;

 z-index: 32;

 background: rgba(0, 0, 0, 0.3);

 opacity: 1;

 color: #fff;

 opacity: 0;

 padding: 0 30px 0;

}

14.絢麗光圈



<div class="aperture">光圈</div>

.aperture {

 width: 136px;

 height: 136px;

 background-color: #dc5947;

 border-radius: 50%;

 line-height: 136px;

 text-align: center;

 color: #fff;

 font-size: 24px;

 cursor: pointer;

 position: relative;

}


.aperture::before {

 border: 3px dashed #a0ff80;

 content: "";

 width: 144px;

 height: 144px;

 position: absolute;

 border-radius: 50%;

 left: -8px;

 top: -6px;

 animation: clockwise 5s linear infinite;

}


@keyframes clockwise {

 100% {

   transform: rotate(360deg);

 }

}

15.彩色流動(dòng)邊框



<div class="rainbow"></div>

.rainbow {

 position: relative;

 z-index: 0;

 width: 400px;

 height: 300px;

 border-radius: 10px;

 overflow: hidden;

 padding: 2rem;

}


.rainbow::before {

 content: '';

 position: absolute;

 z-index: -2;

 left: -50%;

 top: -50%;

 width: 200%;

 height: 200%;

 background-color: #399953;

 background-repeat: no-repeat;

 background-size: 50% 50%, 50% 50%;

 background-position: 0 0, 100% 0, 100% 100%, 0 100%;

 background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);

 -webkit-animation: rotate 4s linear infinite;

 animation: rotate 4s linear infinite;

}


.rainbow::after {

 content: '';

 position: absolute;

 z-index: -1;

 left: 6px;

 top: 6px;

 width: calc(100% - 12px);

 height: calc(100% - 12px);

 background: white;

 border-radius: 5px;

}


@keyframes rotate {

 100% {

   -webkit-transform: rotate(1turn);

   transform: rotate(1turn);

 }

}

16.炫酷偽類邊框



<div class="corner-button">CSS3</div>

.corner-button::before, .corner-button::after {

 content: '';

 position: absolute;

 background: #2f2f2f;

 z-index: 1;

 transition: all 0.3s;

}

.corner-button::before {

 width: calc(100% - 3rem);

 height: calc(101% + 1rem);

 top: -0.5rem;

 left: 50%;

 -webkit-transform: translateX(-50%);

 transform: translateX(-50%);

}

.corner-button::after {

 height: calc(100% - 3rem);

 width: calc(101% + 1rem);

 left: -0.5rem;

 top: 50%;

 -webkit-transform: translateY(-50%);

 transform: translateY(-50%);

}



.corner-button:hover {

 color: pink;

}

.corner-button {

 font-family: 'Lato', sans-serif;

 letter-spacing: .02rem;

 cursor: pointer;

 background: transparent;

 border: 0.5rem solid currentColor;

 padding: 1.5rem 2rem;

 font-size: 2.2rem;

 color: #06c17f;

 position: relative;

 transition: color 0.3s;

 text-align: center;

 margin: 5rem 12rem;

}

.corner-button:hover::after {

 height: 0;

}


.corner-button:hover::before {

 width: 0;

}

.bg-f2{

 background: #2f2f2f;

}

17.偽類美化文字



<div class="beautify-font" data-text='躲躲'>躲躲</div>

<div class="beautify-font2" data-text='躲躲'>躲躲</div>

.beautify-font{

 position: relative;

 font-size: 12rem;

 color: #0099CC

}

.beautify-font::before{

 position: absolute;

 font-size: 12rem;

 color: #333;

 content: attr(data-text);

 white-space:nowrap;

 width: 50%;

 display: inline-block;

 overflow: hidden;

 transition:1s ease-in-out 0s;

}

.beautify-font2{

 position: relative;

 font-size: 6rem;

 color: #0099CC

}

.beautify-font2::before{

 position: absolute;

 font-size: 6rem;

 color: #333;

 content: attr(data-text);

 white-space:nowrap;

 height: 50%;

 display: inline-block;

 overflow: hidden;

 transition:1s ease-in-out 0s;

}


.beautify-font:hover::before{

 width:0;

}

.beautify-font2:hover::before{

 height: 0;

}

18.照片堆疊效果

只使用一張圖片來創(chuàng)造出一堆圖片疊摞在一起的效果,能做到嗎?當(dāng)然,關(guān)鍵是要使用偽元素:before和:after來幫助呈現(xiàn)。把這些偽元素的z-index設(shè)置成負(fù)值,讓它們以背景方式起作用。




<div class="stackthree"><img src="./images/city.jpg"></div>

.stackthree::before {

 background: #eff4de;

}


.stackthree, .stackthree::before, .stackthree::after {

 border: 6px solid #fff;

 height: 200px;

 width: 200px;

 -webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);

 -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);

 box-shadow: 2px 2px 5px rgba(0,0,0,0.3);

}


.stackthree::before {

 top: 5px;

 left: -15px;

 z-index: -1;

 -webkit-transform: rotate(-10deg);

 -moz-transform: rotate(-10deg);

 -o-transform: rotate(-10deg);

 -ms-transform: rotate(-10deg);

 transform: rotate(-10deg);

}

.stackthree::after {

 top: -2px;

 left: -10px;

 -webkit-transform: rotate(-5deg);

 -moz-transform: rotate(-5deg);

 -o-transform: rotate(-5deg);

 -ms-transform: rotate(-5deg);

 transform: rotate(-5deg);

}


.stackthree::before, .stackthree::after {

 background: #768590;

 content: "";

 position: absolute;

 z-index: -1;

 height: 0px\9;

 width: 0px\9;

 border: none\9;

}

.stackthree {

 float: left;

 position: relative;

 margin: 50px;

}

為元素的兼容性

不論你使用單冒號(hào)還是雙冒號(hào)語法,瀏覽器都能識(shí)別。因?yàn)镮E8只支持單冒號(hào)的語法,所以,如果你想兼容IE8,保險(xiǎn)的做法是使用單冒號(hào)。

藍(lán)藍(lán)設(shè)計(jì)www.ocunn.cn )是一家專注而深入的界面設(shè)計(jì)公司,為期望卓越的國內(nèi)外企業(yè)提供卓越的UI界面設(shè)計(jì)、BS界面設(shè)計(jì) 、 cs界面設(shè)計(jì) 、 ipad界面設(shè)計(jì) 、 包裝設(shè)計(jì) 、 圖標(biāo)定制 、 用戶體驗(yàn) 、交互設(shè)計(jì)、 網(wǎng)站建設(shè) 平面設(shè)計(jì)服務(wù)

日歷

鏈接

個(gè)人資料

存檔

国产精品激情自拍| 一区二区三区无码高清视频| 在线观看日产精品| 日韩欧美国产综合一区| 亚洲精品中文字| 俺也去精品视频在线观看| 久久97久久97精品免视看| 热99精品只有里视频精品| 亚洲综合精品伊人久久| 少妇特黄a一区二区三区 | 国产免费av高清在线| 日本熟女毛茸茸| 中文成人无字幕乱码精品区| 免费黄色国产视频| 国产一级片免费在线观看| 日韩一区二区三区不卡| 素人av在线| 成人黄色免费短视频| av网站在线免费看推荐| 国产a亚洲精品| 啪啪亚洲精品| 日韩精品视频网| 久久久久久综合| 亚洲不卡一区二区三区| 亚洲第一福利网| 欧美激情精品久久久久久黑人 | 久久天堂电影| 依依综合在线| 蜜桃国内精品久久久久软件9| 国产成人自拍在线| 亚洲美女淫视频| 91麻豆精品国产91久久久| 国产一区二区黄| 国产精品久久久久99| 成人一区二区免费视频| jizz欧美性20| av片免费观看| 九九在线视频| 欧美在线一级| 欧美1区2区视频| aa级大片欧美| 色94色欧美sute亚洲线路二| 在线观看免费高清视频97| 就去色蜜桃综合| 天天干天天玩天天操| 劲爆欧美第一页| 亚洲色欧美另类| 少妇在线看www| 99tv成人| 激情欧美国产欧美| 久久你懂得1024| 7777精品久久久大香线蕉| 国产精品亚洲аv天堂网| 7777在线视频| 日本黄色录像片| 天天爽夜夜爽夜夜爽| free性欧美| 日本一二区不卡| 久久成人久久爱| 亚洲第一久久影院| 色噜噜国产精品视频一区二区| 91久久嫩草影院一区二区| 欧美一区二区视频在线播放| 99精品欧美一区二区| 国产xxxx孕妇| h片在线观看视频免费| 亚洲欧美高清| 亚洲黄色av一区| 在线视频日本亚洲性| 好吊色欧美一区二区三区| 九九热精品在线播放| 国产农村老头老太视频| 白浆在线视频| 欧美日韩国产综合网| 欧美激情综合五月色丁香| 日韩精品在线影院| 亚洲欧洲久久| 日韩福利在线视频| 草久在线视频| 亚洲精品一区在线| 免费视频一区二区| 在线观看免费视频综合| 2014亚洲精品| 欧美日韩一区二区区别是什么| aaa在线视频| 亚洲精品一区二区在线播放∴| 99精品视频免费观看视频| 玉足女爽爽91| 国产精品久久久久久久久久免费| 国产国语老龄妇女a片| 免费一级a毛片| 国产精品视频一区视频二区| 久久国产精品99精品国产 | 国产精品国产三级欧美二区| 国产精品视频黄色| 久草视频一区二区| 99精品视频在线免费播放| 久久精品一区蜜桃臀影院| 欧美男插女视频| 一级片黄色免费| 夜夜躁狠狠躁日日躁av| 国产99在线观看| 激情综合色播五月| 欧美一区二区三区婷婷月色| 91最新国产视频| 少妇精品无码一区二区免费视频| 成人日韩欧美| 一区在线视频| 日韩一区二区三区四区| 超碰97国产在线| 精品无码国产一区二区三区51安| 色呦呦中文字幕| 天天揉久久久久亚洲精品| 欧美午夜宅男影院| 成人在线国产精品| www.美色吧.com| 欧美日韩在线资源| 自拍日韩欧美| 欧美日韩国产丝袜美女| 国产精品久久久av久久久| 双性尿奴穿贞c带憋尿| 伊人福利在线| 国产99一区视频免费 | 国产日韩一区二区| 亚洲欧洲久久久| 噜噜噜噜噜在线视频| 免费亚洲一区| 一本色道久久综合狠狠躁篇的优点| 国产精品欧美激情在线观看| 免费一级a毛片| 亚洲va久久| 亚洲老妇xxxxxx| 国产91精品入口17c| 真实乱视频国产免费观看| 97人澡人人添人人爽欧美| 97久久精品人人做人人爽| 日韩最新av在线| 日本国产一级片| 玖草视频在线| 天天av综合| 精品伦理精品一区| 在线看无码的免费网站| 日韩在线观看第一页| 最新日韩三级| 亚洲欧美国产三级| 国产精品视频在线免费观看| 91video| 成人免费在线观看视频| 专区另类欧美日韩| 国产精品国产自产拍高清av水多| 成年人看的免费视频| 成人av影院在线观看| 久久99精品国产91久久来源| 欧美国产日韩精品| 国产精品无码无卡无需播放器| 亚洲色图综合| 91福利精品视频| 日本阿v视频在线观看| 99er热精品视频| 国内精品美女在线观看| 日韩视频在线观看一区二区| 日韩在线综合网| 免费观看a视频| 久久久久久亚洲精品杨幂换脸| 亚洲白虎美女被爆操| 日本a级片在线播放| a级片在线播放| 9国产精品视频| 欧美老女人性生活| 久久久久久久久久97| 亚洲天堂电影| 久久午夜羞羞影院免费观看| 亚洲va欧美va在线观看| 91麻豆精品在线| 久久av综合| 欧美www视频| 又黄又爽又色的视频| 在线观看美女网站大全免费| 喷白浆一区二区| xvideos亚洲| 久久成人激情视频| 国产欧美啪啪| 欧美午夜精品久久久久久久| 美女主播视频一区| 性猛交xxxx| 国产福利一区在线观看| 亚洲精品欧美日韩| av无码精品一区二区三区宅噜噜| 久久深夜福利| 久久精品99久久久香蕉| av电影中文字幕| 91九色综合| 欧美精品自拍偷拍| 久久国产午夜精品理论片最新版本| 国产午夜视频在线观看| 国产日韩欧美一区二区三区综合| 国产精品美女www爽爽爽视频| 91精品一区二区三区蜜桃| 国产精品久久久久久久久久辛辛| 欧美日韩电影一区| 日韩精品―中文字幕| 日本精品600av| 久久精品亚洲国产奇米99| 日本一区二区三区四区在线观看| 国产又黄又粗又猛又爽| 一本一道久久a久久精品蜜桃| 最近中文字幕mv在线一区二区三区四区 | 91官网在线观看| 亚洲免费一级视频| 91社区在线观看| 成人免费小视频| 2018中文字幕第一页| 国产精品偷拍| 色偷偷88欧美精品久久久| 日本不卡一区二区三区四区| 最新日本视频| av电影在线观看一区| 任我爽在线视频精品一| 精品美女视频在线观看免费软件 | 香蕉视频污视频| 国产精东传媒成人av电影| 亚洲女人被黑人巨大进入al| 国产福利精品一区二区三区| 丰满大乳少妇在线观看网站| 欧美日韩亚洲一区二区| 亚欧激情乱码久久久久久久久| 色噜噜成人av在线| 亚洲精品日韩在线| 中文字幕手机在线观看| 亚洲人成网www| www.日韩免费| 日韩精品一区二区不卡| 欧美第十八页| 欧美亚洲日本网站| 亚洲天堂日韩av| 三级在线观看一区二区| 国产 高清 精品 在线 a| 久久99久久| 黄色成人av在线| heyzo亚洲| 欧美女同一区| 亚洲一二三四在线观看| 视色,视色影院,视色影库,视色网| 青青草娱乐在线| 久久理论电影网| 精品丰满人妻无套内射| 免费观看成人性生生活片| 在线影院国内精品| av漫画在线观看| 91亚洲一区| 国产精品私拍pans大尺度在线| 十八禁一区二区三区| 国产精品传媒入口麻豆| 国产av不卡一区二区| 欧美13videosex性极品| 精品免费日韩av| 久久久久久久国产精品毛片| 999国产精品| 国产精品日本精品| 天堂成人在线| 中文字幕精品—区二区四季| 一区二区三区av在线| 尤物在线视频| 91国偷自产一区二区三区观看| 免费黄色在线视频| 欧美日韩123| 日本精品视频在线| 亚洲天堂免费av| 91蝌蚪porny九色| 樱花www成人免费视频| 日本在线影院| 亚洲天堂久久av| 国产成人综合在线视频| 2023国产精品久久久精品双| 欧美黄色成人网| 成人免费公开视频| 91论坛在线播放| 男人天堂成人在线| 巨大黑人极品videos精品| 欧美一区二区三区精品| 91高清免费看| 国产精一品亚洲二区在线视频| 久久99精品久久久久子伦| 好男人免费精品视频| 欧美性色黄大片| 国精品无码一区二区三区| 精品一二线国产| 日韩中字在线观看| 青草久久视频| 欧美精品免费在线| 日本熟妇一区二区三区| 久久久天堂av| 日本高清免费在线视频| 欧美a级片一区| 精品在线视频一区二区三区| 久草在线资源站手机版| 神马国产精品影院av| 国产18精品乱码免费看| 亚洲国产wwwccc36天堂| 一区二区三区久久久久| 另类的小说在线视频另类成人小视频在线 | 亚洲一区二区三区成人| 中文av一区特黄| 伊人影院在线观看视频| 国产一区二区三区探花| 91国内产香蕉| 丰满肥臀噗嗤啊x99av| 午夜精品久久一牛影视| 四季av中文字幕| 国产不卡一区视频| 亚洲欧美自偷自拍另类| 欧美成人久久| 亚洲欧美日韩国产成人综合一二三区| 91麻豆精品国产综合久久久| 91精品国产色综合久久不卡98| 免费看男男www网站入口在线| 91精品国产91久久久久久最新毛片 | 欧美裸身视频免费观看| 日韩精品视频无播放器在线看| 91精品国产高清一区二区三区蜜臀| 免费看日批视频| 亚洲欧美视频一区| 一区二区三区视频网| 自拍日韩欧美| 公共露出暴露狂另类av| 亚洲香蕉视频| 精品无码久久久久国产| crdy在线观看欧美| 国产男女猛烈无遮挡91| 国产美女精品写真福利视频| 欧美激情成人在线视频| 91精彩在线视频| 一区二区成人av| 在线视频毛片| 色噜噜狠狠成人中文综合| 国产无套粉嫩白浆内谢| 国产激情视频一区二区在线观看 | 欧美r级电影| 亚洲mv在线看| 精品一区免费| 免费成人在线观看av| 亚洲日本va午夜在线电影| 亚洲精品日韩激情在线电影| 经典三级一区二区| 国产精品美女呻吟| 成人激情综合| 国产精品久久久久久一区二区| 黄视频网站在线观看| 97成人精品区在线播放| 日韩少妇视频| 68精品国产免费久久久久久婷婷| 18加网站在线| 久久久久久国产精品三级玉女聊斋| 少妇高潮一区二区三区69| 91精品国产综合久久精品app| 国产美女明星三级做爰| 欧美日韩亚洲国产综合| 久久一区二区三| 亚洲人成在线播放网站岛国| 在线看的片片片免费| 国产精品初高中害羞小美女文| 老湿机69福利| 一区二区三区四区亚洲| 日韩三级视频在线播放| 亚洲成a人片在线不卡一二三区| 丰满少妇乱子伦精品看片| 午夜精品一区在线观看| 一级黄色在线观看| 色哟哟日韩精品| 国产精品无码在线播放| 6080午夜不卡| 亚洲欧美综合一区二区| 亚洲老司机av| 在线看的av网站| 欧美日韩ab片| 美女高潮在线观看| 国产精品永久免费观看| 成人综合日日夜夜| 九色91国产| 精品国产乱码久久久久久蜜坠欲下 | 中文字幕日韩精品在线观看| 欧美jizzhd欧美| 97视频在线观看免费| 香蕉视频免费在线播放| 欧美日韩国产va另类| 春色校园综合激情亚洲| 国产精品亚洲网站| 日韩精品成人在线观看| 国产欧美亚洲精品| 黄毛片在线观看| 国产欧美一区二区三区久久人妖 | 欧美在线极品| 91免费视频国产| 美女扒开腿让男人桶爽久久动漫| 91久久久久久| 精品久久ai电影| 99精品一级欧美片免费播放| 亚洲精品字幕| 人妻少妇被粗大爽9797pw| 男女性色大片免费观看一区二区 |