主頁 > 知識(shí)庫 > HTML5 3D旋轉(zhuǎn)相冊(cè)的實(shí)現(xiàn)示例

HTML5 3D旋轉(zhuǎn)相冊(cè)的實(shí)現(xiàn)示例

熱門標(biāo)簽:地圖標(biāo)注軟件打印出來 電話機(jī)器人技術(shù) ok電銷機(jī)器人 智能電銷機(jī)器人被禁用了么 如何查看地圖標(biāo)注 欣鼎電銷機(jī)器人 效果 黃石ai電銷機(jī)器人呼叫中心 高德地圖標(biāo)注商戶怎么標(biāo) 惡搞電話機(jī)器人

前一段時(shí)間,突然看到一個(gè)炫酷的3D旋轉(zhuǎn)相冊(cè),這里記錄一下,先看效果圖:

HTML5 代碼如下:

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>HTML5 3D旋轉(zhuǎn)圖片相冊(cè) 可鼠標(biāo)懸停</title>
<style text="text/css">
* {
padding: 0;
margin: 0;
border: none;
outline: none;
box-sizing: border-box;
}

*:before,
*:after {
box-sizing: border-box;
}

html,
body {
min-height: 100%;
}

body {
background-image: radial-gradient(mintcream 0%, lightgray 100%);
;
}

.Container {
margin: 4% auto;
width: 210px;
height: 140px;
position: relative;
perspective: 1000px;
}

#carousel {
width: 100%;
height: 100%;
position: absolute;
transform-style: preserve-3d;
animation: rotation 20s infinite linear;
}

#carousel:hover {
animation-play-state: paused;
}

#carousel figure {
display: block;
position: absolute;
width: 220px;
height: 120px;
left: 10px;
top: 10px;
background: black;
overflow: hidden;
border: solid 5px black;
}

img {
filter: grayscale(1);
cursor: pointer;
transition: all 0.3s ease 0s;
width: 100%;
height: 100%;
}

img:hover {
filter: grayscale(0);
transform: scale(1.2, 1.2);
}

#carousel figure:nth-child(1) {
transform: rotateY(0deg) translateZ(288px);
}

#carousel figure:nth-child(2) {
transform: rotateY(60deg) translateZ(288px);
}

#carousel figure:nth-child(3) {
transform: rotateY(120deg) translateZ(288px);
}

#carousel figure:nth-child(4) {
transform: rotateY(180deg) translateZ(288px);
}

#carousel figure:nth-child(5) {
transform: rotateY(240deg) translateZ(288px);
}

#carousel figure:nth-child(6) {
transform: rotateY(300deg) translateZ(288px);
}

@keyframes rotation {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(360deg);
}
}
</style>
</head>

<body>
<div class="Container">
<div id="carousel">
<figure><img src="img/1.jpg" alt=""></figure>
<figure><img src="img/2.jpg" alt=""></figure>
<figure><img src="img/3.jpg" alt=""></figure>
<figure><img src="img/4.jpg" alt=""></figure>
<figure><img src="img/5.jpg" alt=""></figure>
<figure><img src="img/6.jpg" alt=""></figure>
</div>
</div>
</body>

</html>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:聊城 金昌 盤錦 綏化 阿壩 萍鄉(xiāng) 赤峰 中山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML5 3D旋轉(zhuǎn)相冊(cè)的實(shí)現(xiàn)示例》,本文關(guān)鍵詞  HTML5,旋轉(zhuǎn),相冊(cè),的,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML5 3D旋轉(zhuǎn)相冊(cè)的實(shí)現(xiàn)示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML5 3D旋轉(zhuǎn)相冊(cè)的實(shí)現(xiàn)示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章