Recreate the Spotify Album Page with Tailwind CSS

栏目: IT技术 · 发布时间: 6年前

内容简介:The more I have used Tailwind, the more I have liked it. It lets me design my UI quicker than ever before. People say that CSS frameworks will make you not know the underlying CSS. With Tailwind, I believe you need to know your CSS even better to be able t

Tailwind CSS is an awesome tool that changes the way we write our HTML and CSS. Tailwind is a "utility-first CSS framework" that I initially wasn't sure about. Our HTML gets pretty busy when using Tailwind, but I've found it's not that bad of a tradeoff.

Table of Contents

Recreate the Spotify Album Page with Tailwind CSS

The more I have used Tailwind, the more I have liked it. It lets me design my UI quicker than ever before. People say that CSS frameworks will make you not know the underlying CSS. With Tailwind, I believe you need to know your CSS even better to be able to use the utility classes.

Let's recreate something with Tailwind so that we can practice.

I've found some things around the web to rebuild with Tailwind. For this article, we'll build Spotify's album page UI.

We tried building this on a Twitch stream. Check out the stream to see us trying this live!

Recreate the Spotify Album Page with Tailwind CSS

Here's the final CodePen :

Essential Reading : Learn React from Scratch! (2020 Edition)

Let's get started! Here's the overall outline:

<div>

    <!-- header -->

    <!-- action buttons -->

    <!-- song list -->

</div>

We'll build out the header first. We'll use a containing div and two children divs.

<!-- header -->
<div>
  <img src="https://placekitten.com/g/200/200">

  <div>
    <!-- content -->
    <h4>Playlist</h4>
    <h1>MIDDLE CHILD Radio</h1>

    <p>With J. Cole, Quavo, Ty Dollar $ign</p>
    <p>Created by <a>Spotify</a> - 50 songs, 3 hr 2 min</p>
  </div>
</div>

We have set a class of flex so that the image and the content can sit side by side.

Let's style the image. We'll only need to add a margin to the right of it.

<img src="https://placekitten.com/g/200/200">

Now we can style the content. We'll use Tailwind classes to format the text with color, margins, letter-spacing (tracking), and size.

<!-- header -->
<div>
  <img src="https://placekitten.com/g/200/200">

  <div>
    <!-- content -->
    <h4>Playlist</h4>
    <h1>MIDDLE CHILD Radio</h1>

    <p>With J. Cole, Quavo, Ty Dollar $ign</p>
    <p>Created by <a>Spotify</a> - 50 songs, 3 hr 2 min</p>
  </div>
</div>

Our header content will look like so:

Recreate the Spotify Album Page with Tailwind CSS

Let's build out our action buttons now. We need our buttons and the "Followers" area to sit on the left and the right. We'll use flexbox and justify-content: space-between to achieve this.

Here's the HTML for our action buttons:

<!-- action buttons -->
<div>
  <div>
    <button>Play</button>
    <button><img src="https://image.flaticon.com/icons/svg/2485/2485986.svg" height="25" width="25"></button>
    <button>...</button>
  </div>

  <div>
    <h5>Followers</h5>
    <p>5,055</p>
  </div>
</div>

We've added some margin and set our two sections to sit on the left and the right using: mt-6 flex justify-between .

Play Button

We can style the Play button now:

<button>Play</button>

This will give us a play button similar to Spotify's.

Heart Button

Here is the heart button:

<button>
    <img src="https://image.flaticon.com/icons/svg/2485/2485986.svg" height="25" width="25">
</button>

More Settings Button

This is similar to the heart button. We are just using a ... here. In a more production ready application, you would want to use an icon font or an svg.

<button>...</button>

Followers Section

We'll style the followers section with some of Tailwind's text formatting.

<div>
  <h5>Followers</h5>
  <p>5,055</p>
</div>

The Entire Action Buttons Section

Here is the entire action buttons section.

<!-- action buttons -->
<div>
  <div>
    <button>Play</button>
    <button><img src="https://image.flaticon.com/icons/svg/2485/2485986.svg" height="25" width="25"></button>
    <button>...</button>
  </div>
  <div>
    <h5>Followers</h5>
    <p>5,055</p>
  </div>
</div>

Here's what it all looks like now:

Recreate the Spotify Album Page with Tailwind CSS

In the songs section, we have what looks like a <table> . Whenever coding, I do my best to avoid creating <table> s. This is because tables have their own formatting that is sometimes hard to override. Tables are also not the easiest to work with for responsive and mobile.

We'll create a few divs with columns to recreate Spotify's list. We'll start with the heading section. This section has the following:

  • Spot for a play button
  • Spot for a heart button
  • Title
  • Artist
  • Album
  • Time

Here's the HTML and styling for it:

<!-- song list header -->
<div>
  <div></div>
  <div></div>
  <div>Title</div>
  <div>Artist</div>
  <div>Album</div>
  <div>⏱</div>
</div>

The interesting part of this is how we are sizing with flexbox. We are creating specific widths for the first two columns and the final column. This is because these columns are supposed to be smaller; only an icon will be in these columns.

We set a width and make sure it stays at that width with flex-shrink-0 . flex-shrink is a way to tell flexbox to shrink or not.

We are setting Title, Artist, and Album to w-full . This means that flexbox will let these three columns take up equal space.

Single Song

The last part of this is to create a single song. We are using a lot of the same styles as the header. We are also adding a border to the bottom of each song.

<div>
  <div>▶️</div>
  <div>❤️</div>
  <div>My Song Here</div>
  <div>Eminem</div>
  <div>Spotify</div>
  <div>5:35</div>
</div>

Copy this row a bunch of times and we have our final product!

Recreate the Spotify Album Page with Tailwind CSS

While this isn't a 1 to 1 copy of Spotify, it shows how far we can get with just the default Tailwind classes. We didn't have to write any custom CSS!

Check out our other Tailwind Recreate articles:

Hope you liked this Tailwind tutorial. Let us know if you want more Tailwind content.

Like this article? Follow @chrisoncode on Twitter


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

群体的智慧

群体的智慧

[美] 詹姆斯·索罗维基 / 王宝泉 / 中信出版社 / 2010-10 / 33.00元

《纽约时报》榜首畅销书,《商业周刊》《福布斯》杂志最佳商业图书 21世纪商务人士必读书,了解群体智慧时代的决策模式 告诉我们如何过日子、如何选择领导人、如何做生意以及如何思考这个世界 我们当中的大多数人,不论是选民还是投资者,是客户还是经理人,似乎都相信宝贵的知识掌握在少数人手中,认为精英们做出的决策更加聪明,很少有人相信“乌合之众”也能像专家那样做得如此出色。 但《纽约客......一起来看看 《群体的智慧》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具