เรียนรู้วิธีการรูปแบบปุ่มใช้ CSS
จัดแต่งทรงผมพื้นฐานปุ่ม
ตัวอย่าง
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
ลองตัวเอง» ปุ่มสี
ใช้ background-color
คุณสมบัติการเปลี่ยนสีพื้นหลังของปุ่ม:
ตัวอย่าง
.button1 {background-color: #4CAF50;} /* Green */
.button2
{background-color: #008CBA;} /* Blue */
.button3 {background-color:
#f44336;} /* Red */
.button4 {background-color: #e7e7e7; color: black;} /* Gray */
.button5
{background-color: #555555;} /* Black */
ลองตัวเอง» ขนาดปุ่ม
ใช้ font-size
คุณสมบัติการเปลี่ยนขนาดของปุ่ม:
ตัวอย่าง
.button1 {font-size: 10px;}
.button2 {font-size: 12px;}
.button3
{font-size: 16px;}
.button4 {font-size: 20px;}
.button5 {font-size: 24px;}
ลองตัวเอง» ปุ่มโค้งมน
ใช้ border-radius
คุณสมบัติในการเพิ่มมุมโค้งมนให้กับปุ่ม:
ตัวอย่าง
.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3
{border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}
ลองตัวเอง» สีพรมแดนปุ่ม
ใช้ border
คุณสมบัติการเพิ่มเส้นขอบสีปุ่ม A:
ตัวอย่าง
.button1 {
background-color: white;
color: black;
border: 2px solid #4CAF50; /* Green */
}
...
ลองตัวเอง» ปุ่ม Hoverable
ใช้ :hover
เลือกที่จะเปลี่ยนรูปแบบของปุ่มเมื่อคุณเลื่อนเมาส์มากกว่านั้น
เคล็ดลับ: ใช้ transition-duration
สถานที่ให้บริการในการกำหนดความเร็วของ "โฉบ" ผลที่ได้:
ตัวอย่าง
.button {
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
background-color: #4CAF50; /* Green */
color: white;
}
...
ลองตัวเอง» ปุ่มเงา
ใช้ box-shadow
คุณสมบัติการเพิ่มเงาให้กับปุ่ม:
ตัวอย่าง
.button1 {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0
rgba(0,0,0,0.19);
}
.button2:hover {
box-shadow: 0 12px
16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
ลองตัวเอง» ปุ่มสำหรับผู้พิการ
ใช้ opacity
คุณสมบัติในการเพิ่มความโปร่งใสให้กับปุ่ม (สร้าง "คนพิการ" มอง)
เคล็ดลับ: นอกจากนี้คุณยังสามารถเพิ่ม cursor
ทรัพย์สินที่มีค่า "ที่ไม่ได้รับอนุญาต" ซึ่งจะแสดงเป็น "ไม่มีสัญญาณที่จอดรถ" เมื่อคุณวางเมาส์บนปุ่ม:
ความกว้างของปุ่ม
โดยค่าเริ่มต้นขนาดของปุ่มจะถูกกำหนดโดยเนื้อหาข้อความ (ตามที่กว้างเป็นเนื้อหาของมัน) ใช้ width
คุณสมบัติการเปลี่ยนความกว้างของปุ่ม:
กลุ่มปุ่ม
นำอัตรากำไรขั้นต้นและเพิ่ม float:left
ไปแต่ละปุ่มเพื่อสร้างกลุ่มปุ่ม
เป้นกลุ่มปุ่ม
ใช้ border
คุณสมบัติการสร้างกลุ่มปุ่มขอบ: