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-index: -1;
          display: block;
          width: 100% !important;
          height: 100% !important;
          -webkit-filter: blur(2px);
                  filter: blur(2px);
        }
        .music-player .info {
          width: 100%;
          height: 100px;
          background: #222;
          background: rgba(0, 0, 0, 0.8);
          text-align: center;
          position: relative;
        }
        .music-player .info .jp-playlist li {
          display: none;
        }
        .music-player .info .jp-playlist li a {
          font-size: 30px;
          font-weight: 300;
          text-decoration: none;
          color: #fff;
          color: rgba(225, 225, 225, 0.4);
        .........完整代码请登录后点击上方下载按钮下载查看

网友评论0