赞
踩
在前端开发中,按钮(Button)是网页交互中常见的元素之一,其样式的设计直接影响着用户体验和界面美观度。本文将介绍20种不同的 Button 样式,旨在帮助前端开发者丰富按钮设计思路,提高用户界面的吸引力和可用性。
- .button {
- background-color: #007bff;
- color: #fff;
- border: 1px solid #007bff;
- }
- .button {
- background-color: transparent;
- color: #007bff;
- border: none;
- }
3. 圆角样式
- .button {
- border-radius: 5px;
- }
- .button {
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- }
- .button {
- background: linear-gradient(to right, #ff4e50, #f9d423);
- color: #fff;
- }
- .button {
- border: 1px solid #007bff;
- background-color: transparent;
- color: #007bff;
- }
- .button {
- background-color: transparent;
- color: #007bff;
- }
- .button {
- padding-left: 20px;
- background: url('icon.png') left center no-repeat;
- }
- .button:hover {
- background-color: #0056b3;
- }
- .button:active {
- transform: translateY(1px);
- }
- .button {
- border-radius: 50%;
- }
- .button {
- border: 1px solid transparent;
- background: linear-gradient(to right, #ff4e50, #f9d423);
- color: #fff;
- }
- .button:hover {
- background: linear-gradient(to right, #ff4e50, #f9d423);
- color: #fff;
- }
- .button {
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
- }
- .button {
- background-color: #007bff;
- color: #fff;
- }
- .button:hover {
- background-color: transparent;
- color: #007bff;
- }
- .button {
- border-radius: 20px;
- border: 1px solid #007bff;
- }
- .button:hover {
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
- }
- .button {
- overflow: hidden;
- }
- .button:after {
- content: ' ';
- display: inline-block;
- width: 0;
- animation: typing 3s steps(40, end);
- }
- @keyframes typing {
- from { width: 0; }
- to { width: 100%; }
- }
- .button {
- background: url('lightbulb.png') center center no-repeat;
- }
- .button {
- transform: scale(1.1);
- }
以上示例展示了每种 Button 样式对应的基本 CSS 样式。可以根据具体需求对这些样式进行调整和组合,以达到设计的效果。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。