Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* MUSIC PLAYER TAB by borntobewildcodes (basic). Feel free to change its margins, borders, colors, fonts and other values */
- /*-- CSS (paste under <style type="text/css">) --*/
- /* Music player box */
- #music{
- position:fixed;
- margin-top:0px;
- margin-left:10px;
- background:#fff;
- width:130px;
- height:30px;
- overflow:hidden
- }
- #music:hover{
- height:100px;
- }
- /* Music player icon box */
- .musicplayericon{
- position:absolute;
- margin-top:0px;
- margin-left:0px;
- background:#fff;
- width:30px;
- height:20px;
- border:1px solid #eee;
- padding-top:10px;
- z-index:100;
- }
- /* Music player box */
- .musicplayer{
- position:absolute;
- margin-top:0px;
- margin-left:10px;
- background:#fff;
- width:120px;
- height:20px;
- border:1px solid #eee;
- padding-top:10px;
- overflow:hidden;
- z-index:10;
- }
- /* Playlist box */
- .playlist{
- position:absolute;
- margin-top:32px;
- margin-left:0px;
- background:#fff;
- width:120px;
- height:auto;
- border-left:1px solid #eee;
- border-right:1px solid #eee;
- border-bottom:1px solid #eee;
- font-size:9px;
- font-family:Verdana;
- text-align:left;
- padding:5px;
- overflow:hidden;
- z-index:10;
- }
- <!-- HTML (paste under <body>) -->
- <!-- Music player tab starts -->
- <div id="music">
- <!-- Your can change the music player icon here -->
- <div class="musicplayericon"><img src="http://media.tumblr.com/tumblr_m7w2izzY0j1r6o8v2.gif"></div>
- <div class="musicplayer">
- <!-- Your music player code goes here -->
- <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0=http://www.sheepproductions.com/mfc/done.mp3&t0=Done&f1=http://www.sheepproductions.com/mfc/justified.mp3&t1=Justified&f2=http://www.sheepproductions.com/mfc/shesaid.mp3&t2=She Said&total=3" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
- </div>
- <!--End musicplayer-->
- <div class="playlist">
- <!-- Track titles go here -->
- 1. Done <br>
- 2. Justified <br>
- 3. She said <br>
- 4. Title here <br>
- 5. Title here <br>
- </div>
- <!--End playlist-->
- </div>
- <!-- Music player tab ends -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement