Tất cả bài viết | Bootstrap
Hướng dẫn cách tạo Bootstrap Panel Fullscreen Toggle
Trong bài tự học lập trình web này các Bạn sẽ được Hướng dẫn cách tạo Bootstrap Panel Fullscreen Toggle cho website
Bước 1: Tạo cấu trúc HTML
Tạo Bootstrap Panel Fullscreen Toggle
Bước 2: Tạo cấu trúc CSS
.panel-actions { margin-top: -20px; margin-bottom: 0; text-align: right; } .panel-actions a { color:#333; } .panel-fullscreen { display: block; z-index: 9999; position: fixed; width: 100%; height: 100%; top: 0; right: 0; left: 0; bottom: 0; overflow: auto; }
Bước 3: Gọi thư viện Bootstrap và Font awesome
Bước 4: Gọi thư viện JQUERY
Bước 5: Tạo hiệu ứng Toggle fullscreen bằng JQUERY
$(document).ready(function () { $("#panel-fullscreen").click(function (e) { e.preventDefault(); var $this = $(this); if ($this.children('i').hasClass('glyphicon-resize-full')) { $this.children('i').removeClass('glyphicon-resize-full'); $this.children('i').addClass('glyphicon-resize-small'); } else if ($this.children('i').hasClass('glyphicon-resize-small')) { $this.children('i').removeClass('glyphicon-resize-small'); $this.children('i').addClass('glyphicon-resize-full'); } $(this).closest('.panel').toggleClass('panel-fullscreen'); }); });
Bootstrap Xem (2727) Học thiết kế web giá rẻ