search
HomeWeb Front-endCSS TutorialCSS3 technical practice: create beautiful button styles

CSS3 technical practice: create beautiful button styles

CSS3 Technical Practice: Creating Beautiful Button Styles

Introduction:
In web design, buttons are one of the very important elements. A good-looking button can not only improve the user experience, but also increase the beauty of the web page. CSS3 technology provides rich style selectors and animation effects, allowing us to easily create beautiful button styles. This article will introduce some commonly used CSS3 techniques and how to use them to create a variety of button effects.

1. Basic button styles

First, let’s create a set of basic button styles. The following is a sample code:

<style>
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  .btn-primary {
    background-color: #3498db;
    color: #fff;
    border: none;
  }
  .btn-primary:hover {
    background-color: #2980b9;
  }
  .btn-secondary {
    background-color: #f39c12;
    color: #fff;
    border: none;
  }
  .btn-secondary:hover {
    background-color: #d35400;
  }
</style>

<button class="btn btn-primary">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>

In the above code, we first define a basic button style, the .btn class, which has some common characteristics, such as display: inline-block causes the button to be displayed as an inline block-level element, padding sets the padding of the button, font-size sets the font size of the button, etc.

Then, we define two different styles of buttons, .btn-primary and .btn-secondary classes. The .btn-primary class sets the blue background and white font color, and the .btn-secondary class sets the orange background and white font color. At the same time, we also use the :hover pseudo-class to set the effect when the mouse hovers over the button.

2. Floating button effect

Next, we try to create some floating button effects. Here is a sample code:

<style>
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  .btn-primary {
    background-color: #3498db;
    color: #fff;
    border: none;
    transition: background-color 0.5s;
  }
  .btn-primary:hover {
    background-color: #2ecc71;
  }
  .btn-secondary {
    background-color: #f39c12;
    color: #fff;
    border: none;
    transition: box-shadow 0.5s;
  }
  .btn-secondary:hover {
    box-shadow: 0 0 10px #f39c12;
  }
  .btn-rotate {
    transform: rotate(45deg);
  }
</style>

<button class="btn btn-primary">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>
<button class="btn btn-rotate">Rotate Button</button>

In the above code, we have made some modifications to the basic button style. First, we added a transition effect transition: background-color 0.5s in the .btn-primary class to make the background color transitionally change within 0.5 seconds. When the mouse is hovering over the button, the background color changes from blue to green.

Next, we used another transition effect in the .btn-secondary classtransition: box-shadow 0.5s, when the mouse is hovering over the button , a shadow effect is added to the button.

Finally, we define a .btn-rotate class, which can achieve the rotation effect of the button. By transform: rotate(45deg), we rotate the button 45 degrees.

3. Rounded button effects

In addition to basic button styles and floating button effects, we can also create some rounded button effects. The following is a sample code:

<style>
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
  }
  .btn-primary {
    background-color: #3498db;
    color: #fff;
    border: none;
  }
  .btn-primary:hover {
    background-color: #2980b9;
  }
</style>

<button class="btn btn-primary">Primary Button</button>

In the above code, we add a rounded corner effect to the button through the border-radius: 20px attribute to make it softer. At the same time, we have also adjusted the mouse hover effect.

Conclusion:
Through the above sample code, we can see that using CSS3 technology, we can easily create a variety of beautiful button styles. Whether it is basic button style, floating button effect or rounded button effect, it can all be achieved through simple code. I hope this article will help you understand and apply CSS3 technology. Come and try it!

The above is the detailed content of CSS3 technical practice: create beautiful button styles. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
手把手教你uniapp和小程序分包(图文)手把手教你uniapp和小程序分包(图文)Jul 22, 2022 pm 04:55 PM

本篇文章给大家带来了关于uniapp跨域的相关知识,其中介绍了uniapp和小程序分包的相关问题,每个使用分包小程序必定含有一个主包。所谓的主包,即放置默认启动页面/TabBar 页面,以及一些所有分包都需用到公共资源/JS 脚本;而分包则是根据开发者的配置进行划分,希望对大家有帮助。

Golang实战:数据导出功能的实现技巧分享Golang实战:数据导出功能的实现技巧分享Feb 29, 2024 am 09:00 AM

数据导出功能在实际开发中是非常常见的需求,特别是在后台管理系统或者数据报表导出等场景中。本文将以Golang语言为例,分享数据导出功能的实现技巧,并给出具体的代码示例。1.环境准备在开始之前,确保已经安装好Golang环境,并且熟悉Golang的基本语法和操作。另外,为了实现数据导出功能,可能还需要使用第三方库,比如github.com/360EntSec

MySQL表设计实战:创建一个电商订单表和商品评论表MySQL表设计实战:创建一个电商订单表和商品评论表Jul 03, 2023 am 08:07 AM

MySQL表设计实战:创建一个电商订单表和商品评论表在电商平台的数据库中,订单表和商品评论表是两个非常重要的表格。本文将介绍如何使用MySQL来设计和创建这两个表格,并给出代码示例。一、订单表的设计与创建订单表用于存储用户的购买信息,包括订单号、用户ID、商品ID、购买数量、订单状态等字段。首先,我们需要创建一个名为"order"的表格,使用CREATET

Java开发实战:集成七牛云云存储服务实现文件上传Java开发实战:集成七牛云云存储服务实现文件上传Jul 06, 2023 pm 06:22 PM

Java开发实战:集成七牛云云存储服务实现文件上传引言随着云计算和云存储的发展,越来越多的应用程序需要将文件上传至云端进行存储和管理。云存储服务的优势在于高可靠性、可扩展性和灵活性。本文将介绍如何使用Java语言开发,集成七牛云云存储服务,实现文件上传功能。七牛云简介七牛云是国内领先的云存储服务提供商,其提供了全面的云存储和内容分发服务。用户可以通过七牛云提

深入学习 Elasticsearch 查询语法与实战深入学习 Elasticsearch 查询语法与实战Oct 03, 2023 am 08:42 AM

深入学习Elasticsearch查询语法与实战引言:Elasticsearch是一款基于Lucene的开源搜索引擎,主要用于分布式搜索与分析,广泛应用于大规模数据的全文搜索、日志分析、推荐系统等场景。在使用Elasticsearch进行数据查询时,灵活运用查询语法是提高查询效率的关键。本文将深入探讨Elasticsearch查询语法,并结合实际案例给出

Vue实战:日期选择器组件开发Vue实战:日期选择器组件开发Nov 24, 2023 am 09:03 AM

Vue实战:日期选择器组件开发引言:日期选择器是在日常开发中经常用到的一个组件,它可以方便地选择日期,并提供各种配置选项。本文将介绍如何使用Vue框架来开发一个简单的日期选择器组件,并提供具体的代码示例。一、需求分析在开始开发之前,我们需要进行需求分析,明确组件的功能和特性。根据常见的日期选择器组件功能,我们需要实现以下几个功能点:基础功能:能够选择日期,并

MySQL表设计实战:创建一个电影信息表和演员表MySQL表设计实战:创建一个电影信息表和演员表Jul 01, 2023 pm 08:16 PM

MySQL表设计实战:创建一个电影信息表和演员表导语:在数据库设计中,表的创建是一个非常关键的环节。本文将以电影信息表和演员表为例,详细介绍如何进行MySQL表的设计和创建,并附上相应的代码示例。一、电影信息表设计和创建电影信息表是用来存储电影的相关信息,包括电影名称、导演、上映时间、电影类型等字段。下面是电影信息表的设计和创建过程,首先我们需要选择合适的字

Django框架中的后台管理系统实战Django框架中的后台管理系统实战Jun 18, 2023 am 11:31 AM

Django是一款流行的Web应用程序开发框架,它有着丰富的组件和工具,能够简化和加速Web应用程序的开发过程。其中,Django中的后台管理系统是一个重要的组件,它提供了一个功能强大的管理界面,使得我们可以方便地管理我们的应用程序的数据,包括创建、修改、删除、查询等操作,同时也提供了许多扩展的功能。在本文中,我们将介绍如何在Django中创建一个简单的后台

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)