1. 程式人生 > 實用技巧 >抖音很火的立方體相簿【CSS+HTML編寫】

抖音很火的立方體相簿【CSS+HTML編寫】

話不多說:先看圖說話

首先立方體會不定向移動,滑鼠移上去後會開啟,具體效果看git圖片

接下來呈上程式碼:

1.頁面

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>一葉之秋</title>

<link rel="stylesheet" href="css/YRX.css" />
</head>
<body>
<!--/*外層最大容器*/-->
<div class="wrap">
<!--	/*包裹所有元素的容器*/-->

<div class="cube">
	<!--前面圖片 -->
	<div class="out_front">
		<img src="img/1.jpg"  class="pic" >
	</div>
	<!--後面圖片 -->
	<div class="out_back">
		<img src="img/2.jpg"  class="pic">
	</div>
	<!--左圖片 -->
	<div class="out_left">
		<img src="img/3.jpg"  class="pic">
	</div>
	<div class="out_right">
		<img src="img/4.jpg"  class="pic">
	</div>
	<div class="out_top">
		<img src="img/5.jpg"  class="pic">
	</div>
	<div class="out_bottom">
		<img src="img/6.jpg"  class="pic">
	</div>
	<!--小正方體 --> 
	<span class="in_front">
		<img src="img/7.jpg" class="in_pic" />
	</span>
	<span class="in_back">
		 <img src="img/8.jpg" class="in_pic" />
	</span>
	<span class="in_left">
		<img src="img/9.jpg" class="in_pic" />
	</span>
	<span class="in_right">
		<img src="img/10.jpg" class="in_pic" />
	</span>
	<span class="in_top">
		<img src="img/11.jpg" class="in_pic" />
	</span>
	<span class="in_bottom">
		<img src="img/12.jpg" class="in_pic" />
	</span>
</div>
</div>
</body>
</html>

2.CSS檔案

html{
	background:pink;
    height: 100%;	
}
/*最外層容器樣式*/
.wrap{
	width: 10px;
	height: 10px;
	/*改變左右上下,圖片方塊移動*/
	margin: 200px 400px;
	position: relative;
	
}
/*包裹所有容器樣式*/
.cube{
	width:600px;
	height:400px;
	margin: 0 auto;
	transform-style: preserve-3d;
	transform: rotateX(-30deg) rotateY(-80deg);
	-webkit-animation: rotate 20s infinite;
	/*勻速*/
	animation-timing-function: linear;
}
@-webkit-keyframes rotate{
	from{transform: rotateX(0deg) rotateY(0deg);}
	to{transform: rotateX(360deg) rotateY(360deg);}
}
.cube div{
	position: absolute;
	width: 300px;
	height: 300px;
	opacity: 0.8;
	transition: all .4s;
}
/*定義所有圖片樣式*/
.pic{
	width: 300px;
	height: 300px;
}
.cube .out_front{
	transform: rotateY(0deg) translateZ(150px);
}
.cube .out_back{
	transform: translateZ(-150px) rotateY(180deg);
}
.cube .out_left{
	transform: rotateY(90deg) translateZ(150px);
}
.cube .out_right{
	transform: rotateY(-90deg) translateZ(150px);
}
.cube .out_top{
	transform: rotateX(90deg) translateZ(150px);
}
.cube .out_bottom{
	transform: rotateX(-90deg) translateZ(150px);
}
/*定義小正方體樣式*/
.cube span{
	display: bloack;
	width: 200px;
	height: 200px;
	position: absolute;
	top: 50px;
	left: 50px;
}
.cube .in_pic{
	width: 200px;
	height: 200px;
}
.cube .in_front{
	transform: rotateY(0deg) translateZ(100px);
}
.cube .in_back{
	transform: translateZ(-100px) rotateY(180deg);
}
.cube .in_left{
	transform: rotateY(90deg) translateZ(100px);
}
.cube .in_right{
	transform: rotateY(-90deg) translateZ(100px);
}
.cube .in_top{
	transform: rotateX(90deg) translateZ(100px);
}
.cube .in_bottom{
	transform: rotateX(-90deg) translateZ(100px);
}
/*滑鼠移入後樣式*/
.cube:hover .out_front{
	transform: rotateY(0deg) translateZ(400px);
}
.cube:hover .out_back{
	transform: translateZ(-400px) rotateY(180deg);
}
.cube:hover .out_left{
	transform: rotateY(90deg) translateZ(400px);
}
.cube:hover .out_right{
	transform: rotateY(-90deg) translateZ(400px);
}
.cube:hover .out_top{
	transform: rotateX(90deg) translateZ(400px);
}
.cube:hover .out_bottom{
	transform: rotateX(-90deg) translateZ(400px);
}

3.圖片的話你可以自行選擇,命名就按頁面中那樣,1.jpg…12.jpg

4.大功告成,雙擊html就能看到效果圖了

5.專案結構圖

如果還有什麼不懂或不會操作的,不用擔心,下方有成品連結,下載後可直接看效果圖
下載連結://download.csdn.net/download/qq_44799924/12012882