mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
136 lines
3.0 KiB
Vue
136 lines
3.0 KiB
Vue
<template>
|
|
<div class="top-albums">
|
|
<div class="heading">TOP ALBUMS</div>
|
|
<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="separator"></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: 12.5rem;
|
|
border-radius: $small;
|
|
background-color: rgb(44, 42, 42);
|
|
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(7, 6, 6);
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 7.5rem 1fr;
|
|
padding: $small;
|
|
cursor: pointer;
|
|
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(20, 46, 129);
|
|
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(31, 68, 150);
|
|
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 0.1s ease-in-out;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |