mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
72 lines
1.2 KiB
HTML
72 lines
1.2 KiB
HTML
<div class="main">
|
|
<div class="card" id="c1"></div>
|
|
<div class="card" id="c2"></div>
|
|
<div class="card" id="c3"></div>
|
|
<div class="card" id="c4"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Sharkotech - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
background: rgba(211, 211, 211, 0.199);
|
|
position: absolute;
|
|
transition: .3s ease-in-out;
|
|
cursor: pointer;
|
|
box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#c1 {
|
|
background-color: black;
|
|
}
|
|
|
|
#c2 {
|
|
background-color: blue;
|
|
}
|
|
|
|
#c3 {
|
|
background-color: red;
|
|
}
|
|
|
|
#c4 {
|
|
background-color: green;
|
|
}
|
|
|
|
.main:hover #c1 {
|
|
transform: translateX(-100px) rotate(-40deg);
|
|
}
|
|
|
|
.main:hover #c2 {
|
|
transform: translateX(-50px) rotate(-30deg);
|
|
}
|
|
|
|
.main:hover #c3 {
|
|
transform: translateX(0) rotate(-20deg);
|
|
}
|
|
|
|
.main:hover #c4 {
|
|
transform: translateX(50px) rotate(-10deg);
|
|
}
|
|
|
|
#c1:hover {
|
|
transform: translateX(-150px) rotate(0deg) !important;
|
|
}
|
|
|
|
#c2:hover {
|
|
transform: translateX(-100px) rotate(0deg) !important;
|
|
}
|
|
|
|
#c3:hover {
|
|
transform: translateX(-50px) rotate(0deg) !important;
|
|
}
|
|
|
|
#c4:hover {
|
|
transform: translateX(50px) rotate(0deg) !important;
|
|
}
|
|
|
|
.main {
|
|
display: grid;
|
|
height: 50vmax;
|
|
place-items: center;
|
|
}
|
|
</style>
|