jquery jplayer实现一个播放列表的音乐播放器代码
代码语言:html
所属分类:多媒体
代码描述:jquery jplayer实现一个播放列表的音乐播放器代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*, *:before, *:after {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
min-height: 100%;
}
body { background-size: cover; font-family: "Open Sans", sans-serif; background-color: #eee; background-image: url(//repo.bfw.wiki/bfwrepo/images/player/bg.jpg); background-position: center; background-repeat: no-repeat; }
.music-player {
position: relative;
width: 350px;
height: 290px;
margin: 150px auto;
box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
border-radius: 10px;
background: #222;
overflow: hidden;
z-index: 0;
}
.music-player img {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
z-i.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0