|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/junsu/plugin/TotalControl/ |
Upload File : |
<?
include $_SERVER['DOCUMENT_ROOT']."/conf/conf_dir.php";
if($sessionLevel < 10){
echo "<script>top.location.href = '/guide.html'</script>";
exit;
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta name = "viewport" content = "user-scalable=no, width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta charset="UTF-8">
<title>Total Control HTML5 Audio Player</title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript" src="javascripts/soundmanager/script/soundmanager2.js"></script>
<link type="text/css" href="javascripts/jscrollpane/style/jquery.jscrollpane.css" rel="stylesheet" media="all" />
<!-- the mousewheel plugin -->
<script type="text/javascript" src="javascripts/jscrollpane/script/jquery.mousewheel.js"></script>
<!-- the jScrollPane script -->
<script type="text/javascript" src="javascripts/jscrollpane/script/jquery.jscrollpane.js"></script>
<script src="TotalControl.js"></script>
<script>
$(function () {
$("#total-playlist").totalControl({
style: "default.css",
checkboxesEnabled: true,
playlistSortable: true,
position: "relative",
playlistHeight:400,
repeatOneEnabled: true,
repeatAllEnabled: true,
shuffleEnabled: true,
playlistVisible: true,
songTooltipPosition: "top",
songTooltipEnabled: false,
miniPlayer:false,
isDraggable: false,
autoplayEnabled: true,
addSongEnabled: false,
addPlayerName: "<?=$sessionNickname?>" //옵션추가
});
});
</script>
</head>
<style>
body { margin:0; padding:0; }
</style>
<body>
<!-- br><br><br -->
<ul id="total-playlist" style="margin:3px auto;">
<li mp3="music/yuchun_meet_again.mp3" artist="PARK YU CHUN" title="再会(Japanese ver.)" artwork=""></li>
</ul>
</body>
</html>