Tất cả bài viết | Bootstrap
Hướng dẫn cách tạo Button dễ dàng bằng Bootstrap
Trong bài học thiết kế web này các Bạn sẽ được Hướng dẫn cách tạo Button dễ dàng bằng Bootstrap
Bước 1: Tạo cấu trúc HTML
Hướng dẫn cách tạo Button dễ dàng bằng Bootstrap
Bước 2: Định dạng CSS
.pad-15{ padding: 15px 0; } .pad-30{ padding: 30px 0; } .btn{ border: none; border-radius: 0; color: #fff; text-transform: uppercase; position: relative; } .btn:hover{ color: #fff; } .btn:before,.btn:after{ content: "" position: absolute; transition: all 0.25s ease 0s; } .btn.btn-lg:before,.btn.btn-lg:after{ width: 24px; height: 24px; } .btn.btn-sm:before,.btn.btn-sm:after{ width: 18px; height: 18px; } .btn.btn-xs:before,.btn.btn-xs:after{ width: 14px; height: 14px; } .btn:before{ top: -5px; right: -5px; } .btn:after{ bottom: -5px; left: -5px; } .btn:hover:before,.btn:hover:after{ width: 100%; height: 100%; } .btn.red{ background: #ff6e6e; } .btn.red:before{ border-top: 2px solid #ff6e6e; border-right: 2px solid #ff6e6e; } .btn.red:after{ border-bottom: 2px solid #ff6e6e; border-left: 2px solid #ff6e6e; } .btn.blue{ background: #5cbcf6; } .btn.blue:before{ border-top: 2px solid #5cbcf6; border-right: 2px solid #5cbcf6; } .btn.blue:after{ border-bottom: 2px solid #5cbcf6; border-left: 2px solid #5cbcf6; } .btn.orange{ background: #ef965c; } .btn.orange:before{ border-top: 2px solid #ef965c; border-right: 2px solid #ef965c; } .btn.orange:after{ border-bottom: 2px solid #ef965c; border-left: 2px solid #ef965c; } .btn.green{ background: #7ad79a; } .btn.green:before{ border-top: 2px solid #7ad79a; border-right: 2px solid #7ad79a; } .btn.green:after{ border-bottom: 2px solid #7ad79a; border-left: 2px solid #7ad79a; } @media only screen and (max-width: 767px){ .btn{ margin-bottom: 25px; } }
Bước 3: Gọi thư viện Bootstrap và Font awesome
Bước 4: Gọi thư viện JQUERY
Bootstrap Xem (2691) Học thiết kế web giá rẻ