Hôm nay, Ngô Tôn .IT xin hướng dẫn các bạn làm 1 trang web playlist nhạc bằng HTML, CSS và Jquery.
Các bạn có thể xem demo tại đây: https://ngoton.it/demo/playlist
Cấu trúc website như sau:
– css
– data
– images
– js
– index.html
Đầu tiên, với file index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<link href="css/styles.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="js/jquery-ui-1.8.21.custom.min.js"></script> <script type="text/javascript" src="js/main.js"></script> <div class="player"> <div class="pl"></div> <div class="title"><marquee class="mar" direction="left"></marquee></div> <div class="artist"></div> <div class="cover"></div> <div class="controls"> <div class="rew"></div> <div class="play"></div> <div class="pause"></div> <div class="fwd"></div> </div> <div class="volume"></div> <div class="tracker"></div> </div> <ul class="playlist hidden"> <li audiourl="01.mp3" cover="cover1.png" artist="Artist 1">Hãy về đây bên anh.mp3</li> <li audiourl="02.mp3" cover="cover2.png" artist="Artist 2">02.mp3</li> <li audiourl="03.mp3" cover="cover3.png" artist="Artist 3">03.mp3</li> <li audiourl="04.mp3" cover="cover4.png" artist="Artist 4">04.mp3</li> <li audiourl="05.mp3" cover="cover5.png" artist="Artist 5">05.mp3</li> <li audiourl="06.mp3" cover="cover6.png" artist="Artist 6">06.mp3</li> <li audiourl="07.mp3" cover="cover7.png" artist="Artist 7">07.mp3</li> </ul> |
Mình giải thích chút nhé.
Ta thêm 1 div với class name là “player” gồm các thành phần:
– pl: Hiển thị playlist
– title: Hiển thị tên bài hát. Mình cho thêm thẻ marquee nữa cho nó chạy chạy 😀
– artist: Nghệ sĩ
– cover: Hiển thị đĩa nhạc
– controls: Chứa các nút điều khiển
– volume: Âm lượng
– tracker: Mình tạm dịch là cây thời gian của bài hát
Và 1 list danh sách bài hát trong class “playlist”, mình để trạng thái ẩn
Bây giờ ta sẽ định nghĩa style cho các thành phần trên.
/css/styles.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
body{ background: transparent url("../images/bg.jpg") no-repeat scroll center top; } .player { background: transparent url("../images/player.png") no-repeat scroll center top; height: 491px; position: relative; width: 430px; z-index: 2; margin: 0 auto; } .title, .artist { font-family: verdana; left: 20px; position: absolute; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .title { color: #FFFFFF; font-size: 14px; font-weight: bold; top: 25px; } .artist { color: #EEEEEE; font-size: 12px; top: 50px; } .pl { background: transparent url("../images/spr.png") no-repeat scroll -274px -175px; cursor: pointer; height: 34px; right: 20px; position: absolute; top: 40px; width: 32px; } .pl:hover { top: 42px; } .cover { background: transparent url(../data/cover1.png) no-repeat scroll center top; border-radius: 5px 5px 5px 5px; height: 278px; position: absolute; width: 278px; top: 20px; left: 50%; margin-left: -140px; } .cover-play{ animation:colorBall 10s linear infinite; -moz-animation:colorBall 10s linear infinite; -webkit-animation:colorBall 10s linear infinite; -ms-animation:colorBall 10s linear infinite; } .controls { cursor: pointer; height: 87px; left: 130px; position: absolute; top: 335px; width: 170px; } .controls .play, .controls .pause, .controls .rew, .controls .fwd { background: transparent url("../images/controls.png") no-repeat scroll 0 0; float: left; height: 100%; } .controls .pause{ background: transparent url("../images/controls2.png") no-repeat scroll 0 0; float: left; height: 100%; } .controls .play { background-position: -50px -1px; width: 40%; } .controls .pause { background-position: -50px -1px; display: none; width: 40%; } .controls .rew { background-position: -54px -171px; width: 30%; } .controls .fwd { background-position: -100px -171px; width: 30%; } .hidden { display: none; } .controls .visible { display: block; } .volume { height: 11px; right: 20px; position: absolute; top: 340px; width: 70px; } .tracker { height: 5px; left: 10px; position: absolute; top: 330px; width: 405px; } .ui-slider-range { background: transparent url("../images/spr.png") no-repeat scroll 5px -222px; height: 100%; position: absolute; top: 0; } .ui-slider-handle { cursor: pointer; height: 10px; margin-left: -5px; position: absolute; top: 2px; width: 10px; z-index: 2; } .volume .ui-slider-handle { background: url("../images/spr.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0); height: 13px; width: 13px; } .playlist { background-color: rgba(255, 255, 255, 0.06); border-radius: 5px 5px 5px 5px; list-style-type: none; margin: -78px auto; padding-bottom: 10px; padding-top: 15px; position: relative; width: 360px; z-index: 3; } .playlist li { color: #EEEEEE; cursor: pointer; margin: 0 0 5px 15px; } .playlist li.active { font-weight: bold; font-style: italic; } /*******Circle Animation ********/ @keyframes colorBall { from { transform:rotate(360deg); } to { transform:rotate(0deg); } } @-moz-keyframes colorBall { from { -moz-transform:rotate(360deg); } to { -moz-transform:rotate(0deg); } } @-webkit-keyframes colorBall { from { -webkit-transform:rotate(360deg); } to { -webkit-transform:rotate(0deg); } } @-ms-keyframes colorBall { from { -ms-transform:rotate(360deg); } to { -ms-transform:rotate(0deg); } } |
1 số hình ảnh các bạn hãy vào đây để tải về nhé, nhớ bỏ vào thư mục images: https://ngoton.it/demo/playlist/images/
Giờ tới phần Jquery, các bạn download 2 file là jquery-1.7.2.min.js và jquery-ui-1.8.21.custom.min.js rồi copy vào folder “js”.
Bây giờ các bạn tạo file main.js với nội dung sau:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
jQuery(document).ready(function() { // inner variables var song; var tracker = $('.tracker'); var volume = $('.volume'); function initAudio(elem) { var url = elem.attr('audiourl'); var title = elem.text(); var cover = elem.attr('cover'); var artist = elem.attr('artist'); $('.player .title .mar').text(title); $('.player .artist').text(artist); $('.player .cover').css('background-image','url(data/' + cover+')');; song = new Audio('data/' + url); // timeupdate event listener song.addEventListener('timeupdate',function (){ var curtime = parseInt(song.currentTime, 10); tracker.slider('value', curtime); }); $('.playlist li').removeClass('active'); elem.addClass('active'); } function playAudio() { song.play(); tracker.slider("option", "max", song.duration); $('.play').addClass('hidden'); $('.pause').addClass('visible'); } function stopAudio() { song.pause(); $('.play').removeClass('hidden'); $('.pause').removeClass('visible'); } // play click $('.play').click(function (e) { e.preventDefault(); playAudio(); $('.cover').addClass('cover-play'); }); // pause click $('.pause').click(function (e) { e.preventDefault(); stopAudio(); $('.cover').removeClass('cover-play'); }); // forward click $('.fwd').click(function (e) { e.preventDefault(); stopAudio(); var next = $('.playlist li.active').next(); if (next.length == 0) { next = $('.playlist li:first-child'); } initAudio(next); }); // rewind click $('.rew').click(function (e) { e.preventDefault(); stopAudio(); var prev = $('.playlist li.active').prev(); if (prev.length == 0) { prev = $('.playlist li:last-child'); } initAudio(prev); }); // show playlist $('.pl').toggle(function(e){ e.preventDefault(); $('.playlist').slideDown(300); },function(e){ e.preventDefault(); $('.playlist').slideUp(300); }); // playlist elements - click $('.playlist li').click(function () { stopAudio(); initAudio($(this)); }); // initialization - first element in playlist initAudio($('.playlist li:first-child')); // set volume song.volume = 0.8; // initialize the volume slider volume.slider({ range: 'min', min: 1, max: 100, value: 80, start: function(event,ui) {}, slide: function(event, ui) { song.volume = ui.value / 100; }, stop: function(event,ui) {}, }); // empty tracker slider tracker.slider({ range: 'min', min: 0, max: 10, start: function(event,ui) {}, slide: function(event, ui) { song.currentTime = ui.value; }, stop: function(event,ui) {} }); }); |
Cuối cùng các bạn hãy cho bài hát cùng cover vào thư mục data và thưởng thức thôi :).
Các bạn chú ý ở file index, mình có để các list bài hát với các attributes là audiourl và cover, các bạn nhớ đặt tên cho đúng nhé.
VD: audiourl=”01.mp3″ cover=”cover1.png”
tương ứng trong folder data sẽ có: 01.mp3 , cover1.png
Chúc các bạn thành công!
Leave a Reply