
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0px;
padding: 0;
background-color: black;
}
body {
perspective: 2000px;
transform-style: preserve-3d;
height: 100vh;
background-color: transparent;
}
.wrapper {
width: auto;
height: 800px;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
left: 50%;
top: 50%;
background-color: transparent;
transform: translate(-50%, -50%) rotateY(0deg);
transform-style: preserve-3d;
animation: round 5s infinite linear;
box-shadow: 0 0 30px 10px white,
0 0 100px 40px yellow,
0 0 150px 80px #0ff;
}
@keyframes round {
0% {
transform: translate(-50%, -50%) rotateY(0deg);
}
100% {
transform: translate(-50%, -50%) rotateY(360deg);
}
}
.wrapper div {
position: absolute;
padding: 10px;
width: 250px;
height: auto;
box-sizing: border-box;
box-shadow: 0 0 30px 10px white,
0 0 100px 40px yellow,
inset 0 0 30px 0px white;
background-color: transparent;
}
.wrapper div:nth-of-type(1) {
transform: rotateY(60deg) translatez(400px);
}
.wrapper div:nth-of-type(2) {
transform: rotateY(120deg) translatez(400px);
}
.wrapper div:nth-of-type(3) {
transform: rotateY(180deg) translatez(400px);
}
.wrapper div:nth-of-type(4) {
transform: rotateY(240deg) translatez(400px);
}
.wrapper div:nth-of-type(5) {
transform: rotateY(300deg) translatez(400px);
}
.wrapper div:nth-of-type(6) {
transform: rotateY(0deg) translatez(400px);
}
img {
width: 100%;
display: block;
}
</style>
</head>
<body>
<div class="wrapper">
<div><img src="./p1.jpg" alt=""></div>
<div><img src="./p2.jpg" alt=""></div>
<div><img src="./p4.jpg" alt=""></div>
<div><img src="./p5.jpg" alt=""></div>
<div><img src="./p6.jpg" alt=""></div>
<div><img src="./p7.jpg" alt=""></div>
</div>
</body>
</html>