基於HTML的3D立方體相簿免費下載
基於HTML的3D立方體相簿
免費程式碼下載地址:https://download.csdn.net/download/qq_44273429/13996508
(粉絲可免費下載,點個關注唄)
HTML程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=div, initial-scale=1.0">
<title>love</title>
<link rel="stylesheet" href="./css/program.css">
</head>
<body>
<div class="title">
立方體旋轉
</div>
<audio controls="controls" autoplay="autoplay"><source src="./video/love.mp3" type="audio/mpeg"/>
Your browser does not support the audio element.
</audio>
<div class="cube">
<!-- 外層立方體 -->
<div class="outer-cube">
<div class="outer-top">
<img src="images/1.jpg"/>
</div>
<div class="outer-bottom">
<img src="images/2.jpg"/>
</div>
<div class="outer-front">
<img src="images/3.jpg"/>
</div>
<div class="outer-back">
<img src="images/4.jpg"/>
</div>
<div class="outer-left">
<img src="images/5.jpg"/>
</div>
<div class="outer-right">
<img src="images/6.jpg"/>
</div>
</div>
<!-- 內層立方體 -->
<div class="inner-cube">
<div class="inner-top">
<img src="images/01.jpg"/>
</div>
<div class="inner-bottom">
<img src="images/02.jpg"/>
</div>
<div class="inner-front">
<img src="images/03.jpg"/>
</div>
<div class="inner-back">
<img src="images/04.jpg"/>
</div>
<div class="inner-left">
<img src="images/05.jpg"/>
</div>
<div class="inner-right">
<img src="images/06.jpg"/>
</div>
</div>
</div>
<div>
<div class="message">
<div class="author">
<a href="https://blog.csdn.net/qq_44273429">海擁製作</a>
</div>
<div class="tip">
溫馨提示:滑鼠移入移出立方體,將會顯示效果!
</div>
</div>
</div>
</body>
</html>
CSS程式碼:
* {
margin: 0px;
padding: 0px;
}
html {
overflow: hidden;
height: 100%;
background: linear-gradient(rgb(0, 238, 255) 0%, #000 100%);
}
.title {
color: rgb(255, 0, 200);
text-align: center;
text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, 0px 8px 7px #001135;
font-size: 40px;
}
.cube {
position: relative;
margin: 0px auto;
margin-top: 9%;
margin-left: 42%;
width: 200px;
height: 200px;
transform: rotateX(-30deg) rotateY(-80deg);
transform-style: preserve-3d;
animation: rotate 15s infinite;
}
.cube .outer-cube,
.cube .inner-cube {
transform-style: preserve-3d;
}
/* 旋轉立方體 */
@keyframes rotate {
from {
transform: rotateX(0deg) rotateY(0deg);
}
to {
transform: rotateX(360deg) rotateY(360deg);
}
}
/* 外層立方體樣式 */
.outer-cube .outer-top,
.outer-cube .outer-bottom,
.outer-cube .outer-right,
.outer-cube .outer-left,
.outer-cube .outer-front,
.outer-cube .outer-back {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 200px;
border: 1px solid #fff;
opacity: 0.3;
transition: all .9s;
}
.outer-cube img {
width: 200px;
height: 200px;
}
.outer-top {
transform: rotateX(90deg) translateZ(100px);
}
.outer-bottom {
transform: rotateX(-90deg) translateZ(100px);
}
.outer-front {
transform: rotateY(0deg) translateZ(100px);
}
.outer-back {
transform: translateZ(-100px) rotateY(180deg);
}
.outer-left {
transform: rotateY(90deg) translateZ(100px);
}
.outer-right {
transform: rotateY(-90deg) translateZ(100px);
}
/* 巢狀的內層立方體樣式 */
.inner-cube>div {
position: absolute;
top: 35px;
left: 35px;
width: 130px;
height: 130px;
}
.inner-cube img {
width: 130px;
height: 130px;
}
.inner-top {
transform: rotateX(90deg) translateZ(65px);
}
.inner-bottom {
transform: rotateX(-90deg) translateZ(65px);
}
.inner-front {
transform: rotateY(0deg) translateZ(65px);
}
.inner-back {
transform: translateZ(-65px) rotateY(180deg);
}
.inner-left {
transform: rotateY(90deg) translateZ(65px);
}
.inner-right {
transform: rotateY(-90deg) translateZ(65px);
}
.cube:hover .outer-top {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: rotateX(90deg) translateZ(200px);
}
.cube:hover .outer-bottom {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: rotateX(-90deg) translateZ(200px);
}
.cube:hover .outer-front {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: rotateY(0deg) translateZ(200px);
}
.cube:hover .outer-back {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: translateZ(-200px) rotateY(180deg);
}
.cube:hover .outer-left {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: rotateY(90deg) translateZ(200px);
}
.cube:hover .outer-right {
right: -70px;
bottom: -70px;
opacity: 0.8;
transform: rotateY(-90deg) translateZ(200px);
}
.message .author {
position: absolute;
right: 50px;
background-image: -webkit-linear-gradient(left, blue, #66ffff 10%, #cc00ff 20%, #CC00CC 30%, #CCCCFF 40%, #00FFFF 50%, #CCCCFF 60%, #CC00CC 70%, #CC00FF 80%, #66FFFF 90%, blue 100%);
font-size: 35px;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-background-size: 200% 100%;
-webkit-animation: masked-animation 4s linear infinite;
}
@keyframes masked-animation {
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}
.message .tip {
position: absolute;
right: 0px;
margin-top: 60px;
color: red;
font-size: 18px;
}
相關文章
- 免費的VNC中文軟體下載,Windows免費的VNC中文軟體下載!VNCWindows
- 下載免費CRM軟體
- 免費的FTP工具,免費的FTP工具下載!FTP
- 基於案例學SQL優化-全套視訊教程免費下載SQL優化
- 10 套基於Web的線上考試系統原始碼免費下載Web原始碼
- 27 個免費的 HTML5/CSS3 模板供下載HTMLCSSS3
- 基於Python的QQ空間相簿中的所有照片下載器Python
- ManagerForMacMAC版下載_ManagerForMac免費版下載ORMMacACM
- 免費下載!22個最新的HTML&CSS3 UI工具包HTMLCSSS3UI
- 30套免費的響應式 HTML5 & CSS3 模板下載HTMLCSSS3
- Anki MAc免費下載-Anki for mac(好用的學習軟體)Mac
- 三種免費批量下載QQ空間相簿方法-2018.05.20親測有效
- Spark視訊教程免費下載Spark
- ElasticSearch 視訊教程免費下載Elasticsearch
- Beginning JavaFX .pdf 免費下載Java
- Quartz 視訊教程免費下載quartz
- App Downloader 1.0.3免費版 (Homebrew軟體下載工具)APP
- 免費影片下載軟體 ClipGrab 3.9.6 mac中文版Mac
- 分享免費下載論文的網站網站
- qq相簿批量下載
- 最完美的PDF轉Word軟體永久免費破解版免費下載(親測好用)
- 基於 HTML5 WebGL 的 3D 挖掘機HTMLWeb3D
- 基於 HTML5 的 3D 工控隧道案例HTML3D
- 基於 HTML5 WebGL 的 3D 機房HTMLWeb3D
- 【免費下載facebook影片到手機相簿教學】拿走不謝!!騙你們我跪地三磕頭!
- 工單系統提供免費下載
- xshell免費版下載安裝
- Weblogic 視訊教程免費下載Web
- Beginning Blockchain.pdf 免費下載Blockchain
- CSS Refactoring.pdf 免費下載CSS
- genymotion個人免費personal版下載地址
- 配合Touch上市,《Quill》於12月6日開啟免費下載UI
- 免下載就能用的主圖模板,免費分享模板使用教程!
- 基於 HTML5 WebGL 的 3D 科幻風機HTMLWeb3D
- 基於 HTML5 的 WebGL 3D 隧道監控HTMLWeb3D
- 基於 HTML5 Canvas 的 3D 碰撞檢測HTMLCanvas3D
- 基於 HTML5 Canvas 的 3D 機房建立HTMLCanvas3D
- 有了這些神器軟體,全網音樂免費下載