做爰高潮a片〈毛片〉,尤物av天堂一区二区在线观看,一本久久A久久精品VR综合,添女人荫蒂全部过程av

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

CSS3實現(xiàn)的圖片放大鏡特效

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 18:48:10
文檔

CSS3實現(xiàn)的圖片放大鏡特效

CSS3實現(xiàn)的圖片放大鏡特效:一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以灰色背景圖的形式展示,需要的朋友不要錯過今天要給大家分享的的一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以
推薦度:
導(dǎo)讀CSS3實現(xiàn)的圖片放大鏡特效:一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以灰色背景圖的形式展示,需要的朋友不要錯過今天要給大家分享的的一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以
一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以灰色背景圖的形式展示,需要的朋友不要錯過

今天要給大家分享的的一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以灰色背景圖的形式展示。效果非常不錯。

實現(xiàn)的代碼:

html代碼:

<ul class="gallery"> 
<li class="gallery__item"></li> 
<li class="gallery__item"></li> 
<li class="gallery__item"></li> 
<li class="gallery__item"></li> 
<li class="gallery__item"></li> 
<li class="gallery__item"></li> 
</ul>

css代碼:

.gallery 
{ 
list-style: none; 
} 
.gallery:before, .gallery__item:last-child 
{ 
position: fixed; 
top: 50%; 
left: 50%; 
margin: -31.25em; 
width: 62.5em; 
height: 62.5em; 
} 
.gallery:before 
{ 
z-index: -1; 
border-radius: 50%; 
content: ''; 
box-shadow: inset 0 0 5em dimgrey, 0 0 0 50vw dimgrey; 
} 
.gallery__item 
{ 
background-blend-mode: luminosity; 
transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-image 0.5s; 
} 
.gallery__item:not(:last-child) 
{ 
position: absolute; 
top: 50%; 
left: 50%; 
width: 32vmin; 
height: 32vmin; 
border-radius: 50%; 
box-shadow: 0 0 .5em white; 
} 
.gallery__item:nth-child(1) 
{ 
margin: 13.87457vmin -4.53223vmin; 
-webkit-transform: scale(0.5); 
background: url("imgs/1.jpg") 50% 50% fixed whitesmoke; 
} 
.gallery__item:nth-child(1):hover 
{ 
-webkit-transform: scale(1); 
background-blend-mode: normal; 
cursor: pointer; 
} 
.gallery__item:nth-child(1):hover ~ :last-child 
{ 
background: url("imgs/1.jpg") 50% 50% fixed dimgray; 
} 
.gallery__item:nth-child(1):hover ~ :last-child:after 
{ 
opacity: .001; 
} 
.gallery__item:nth-child(2) 
{ 
margin: 4.13825vmin -40.86867vmin; 
-webkit-transform: scale(0.5); 
background: url("imgs/2.jpg") 50% 50% fixed whitesmoke; 
} 
.gallery__item:nth-child(2):hover 
{ 
-webkit-transform: scale(1); 
background-blend-mode: normal; 
cursor: pointer; 
} 
.gallery__item:nth-child(2):hover ~ :last-child 
{ 
background: url("imgs/2.jpg") 50% 50% fixed dimgray; 
} 
.gallery__item:nth-child(2):hover ~ :last-child:after 
{ 
opacity: .001; 
} 
.gallery__item:nth-child(3) 
{ 
margin: -33.42845vmin -42.83746vmin; 
-webkit-transform: scale(0.5); 
background: url("imgs/3.jpg") 50% 50% fixed whitesmoke; 
} 
.gallery__item:nth-child(3):hover 
{ 
-webkit-transform: scale(1); 
background-blend-mode: normal; 
cursor: pointer; 
} 
.gallery__item:nth-child(3):hover ~ :last-child 
{ 
background: url("imgs/3.jpg") 50% 50% fixed dimgray; 
} 
.gallery__item:nth-child(3):hover ~ :last-child:after 
{ 
opacity: .001; 
} 
.gallery__item:nth-child(4) 
{ 
margin: -46.90963vmin -7.71779vmin; 
-webkit-transform: scale(0.5); 
background: url("imgs/4.jpg") 50% 50% fixed whitesmoke; 
} 
.gallery__item:nth-child(4):hover 
{ 
-webkit-transform: scale(1); 
background-blend-mode: normal; 
cursor: pointer; 
} 
.gallery__item:nth-child(4):hover ~ :last-child 
{ 
background: url("imgs/4.jpg") 50% 50% fixed dimgray; 
} 
.gallery__item:nth-child(4):hover ~ :last-child:after 
{ 
opacity: .001; 
} 
.gallery__item:nth-child(5) 
{ 
margin: -17.67475vmin 15.95615vmin; 
-webkit-transform: scale(0.5); 
background: url("imgs/5.jpg") 50% 50% fixed whitesmoke; 
} 
.gallery__item:nth-child(5):hover 
{ 
-webkit-transform: scale(1); 
background-blend-mode: normal; 
cursor: pointer; 
} 
.gallery__item:nth-child(5):hover ~ :last-child 
{ 
background: url("imgs/5.jpg") 50% 50% fixed dimgray; 
} 
.gallery__item:nth-child(5):hover ~ :last-child:after 
{ 
opacity: .001; 
} 
.gallery__item:last-child 
{ 
z-index: -2; 
} 
.gallery__item:last-child:after 
{ 
position: absolute; 
top: 0; 
right: 0; 
bottom: 0; 
left: 0; 
opacity: .999; 
background: dimgrey; 
transition: opacity 2s; 
content: ''; 
}

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

CSS3實現(xiàn)的圖片放大鏡特效

CSS3實現(xiàn)的圖片放大鏡特效:一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以灰色背景圖的形式展示,需要的朋友不要錯過今天要給大家分享的的一款用純css3實現(xiàn)的圖片放大鏡特效。頁面打開五個小圖顯示于頁面。當(dāng)鼠標(biāo)經(jīng)過圖片時,當(dāng)前圖片以
推薦度:
標(biāo)簽: 實現(xiàn) 效果 中的圖片
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 竹溪县| 璧山县| 伊川县| 呼图壁县| 武清区| 天峨县| 名山县| 周至县| 昌平区| 土默特左旗| 新泰市| 兴国县| 中西区| 德昌县| 华蓥市| 来宾市| 静安区| 深州市| 阿克陶县| 罗平县| 长垣县| 嘉荫县| 邢台县| 临沧市| 龙泉市| 肃南| 台江县| 昌乐县| 阿尔山市| 拉孜县| 泰来县| 墨竹工卡县| 大邑县| 象山县| 榆中县| 南召县| 青龙| 株洲市| 梅河口市| 彰化县| 上饶市|