Recreate the Spotify Album Page with Tailwind CSS

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

内容简介: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


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

查看所有标签

猜你喜欢:

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

深入理解LINUX网络技术内幕

深入理解LINUX网络技术内幕

Christian Benvenuti / 夏安、闫江毓、黄景昌 / 中国电力出版社 / 2009-6 / 128.00元

Linux如此的流行正是得益于它的特性丰富及有效的网络协议栈。如果你曾经惊叹于Linux能够实现如此复杂的工作,或者你只是想通过现实中的例子学习现代网络,《深入理解Linux网络内幕》将会给你指导。同其他O'Reilly的流行书籍一样,《深入理解Linux网络内幕》清楚地阐述了网络的基本概念,并指导你如何用C语言实现。虽然早先的 TCP/IP经验是有用的,但初学者通过《深入理解Linux网络内幕》......一起来看看 《深入理解LINUX网络技术内幕》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具