add album explorer

This commit is contained in:
geoffrey45
2021-12-10 18:34:34 +03:00
parent 0fa55eeeae
commit aed2c74975
8 changed files with 248 additions and 68 deletions
+144
View File
@@ -0,0 +1,144 @@
<template>
<div class="top-albums">
<h3 class="heading">TOP ALBUMS</h3>
<div class="items">
<div class="item rounded" v-for="album in albums" :key="album">
<div class="image rounded"></div>
<div class="info">
<div class="name ellip">{{ album.title }}</div>
<div class="artist ellip">{{ album.artist }}</div>
<div class="seperator"></div>
<div class="top">
<div class="play-icon"></div>
<div class="text ellip">{{ album.top_track }}</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
setup() {
const albums = [
{
title: "Thriller",
artist: "Michael Jackson, Sting, Shaggy, Juice WRLD",
top_track: "Beat It and althought you whatever",
},
{
title: "Figting Demons",
artist: "Juice WRLD",
top_track: "Girl Of My Dreams",
},
{
title: "Crybaby",
artist: "Lil Peep",
top_track: "Lil kennedy",
},
];
return {
albums,
};
},
};
</script>
<style lang="scss">
.top-albums {
height: 13rem;
border-radius: $small;
// background: linear-gradient(to bottom right, #5a1c11 60%, #110000);
background-color: rgb(12, 1, 1);
padding: $small;
.heading {
margin: 0 0 $small;
}
.items {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: $small;
.item {
height: 10rem;
width: 100%;
background-color: rgb(122, 72, 5);
display: grid;
align-items: center;
grid-template-columns: 7.5rem 1fr;
padding: $small;
cursor: pointer;
transition: all 0.2s ease-in-out;
&:hover {
background-color: rgba(214, 80, 39, 0.76);
transition: all 0.2s ease-in-out;
}
.image {
height: 7rem;
width: 7rem;
background-image: url(../../assets/images/tk.jpg);
border-radius: $small;
}
.info .name {
font-size: 1.5rem;
font-weight: bold;
}
.info .artist {
font-size: small;
}
.info .top {
height: 2.5rem;
background-color: rgb(53, 12, 12);
border-radius: $small;
margin-left: auto;
display: grid;
grid-template-columns: 2.5rem 1fr;
align-items: center;
transition: all 0.2s ease-in-out;
user-select: none;
.play-icon {
margin: 0 0 0 $small;
height: 1.5rem;
width: 1.5rem;
background-image: url(../../assets/icons/play.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
transition: all 0.2s ease-in-out;
}
.text {
color: white;
}
&:hover {
background-color: rgb(112, 29, 29);
transition: all 0.2s ease-in-out;
.play-icon {
transform: scale(1.2);
transition: all 0.2s ease-in-out;
}
}
&:active {
transform: scale(0.95);
transition: all .1s ease-in-out;
}
}
}
}
}
</style>