The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Vbdock Details »» | |||||||||||||||||||||||||||||
Version: 1.0
vB Version: 3.6.x 3.7.x 3.8.x Released: 03-August-2008 Live demo: www.parcherock.com General Description: Create a menu-style dock for Mac OS X based on CSS and Javascript. (View image) Installation: 1. Upload via FTP the contents of the folder to upload the directory where you installed vBulletin 2. Go to AdminCP -> Styles & Templates -> Style Manager -> Expand the menu and choose Edit Templates. Edit the navbar template that is inside the Templates Header. Paste at the end of the template Code:
<!-- CSS Mac Dock --> <script type="text/javascript" src="clientscript/jquery.js"></script> <script type="text/javascript" src="clientscript/interface.js"></script> <!--[if lt IE 7]> <style type="text/css"> div, img { behavior: url(images/dock/iepngfix.htc) } </style> <![endif]--> <link href="images/dock/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="dock" id="dock"> <div class="dock-container"> <a class="dock-item" href="$vboptions[bburl]$session[sessionurl_q]"><img src="images/dock/home.png" alt="home" /><span>P?gina Principal</span></a> <a class="dock-item" href="memberlist.php$session[sessionurl_q]"><img src="images/dock/users.png" alt="usuarios" /><span>Miembros</span></a> <a class="dock-item" href="search.php?$session[sessionurl]do=getnew"><img src="images/dock/newpost.png" alt="nuevos mensajes" /><span>Nuevos Mensajes</span></a> <a class="dock-item" href="private.php$session[sessionurl_q]"><img src="images/dock/mp.png" alt="mensajes privados" /><span>Mensajes Privados</span></a> <a class="dock-item" href="usercp.php$session[sessionurl_q]"><img src="images/dock/usercp.png" alt="panel de control" /><span>Panel de Control</span></a> <a class="dock-item" href="calendar.php$session[sessionurl_q]"><img src="images/dock/calendar.png" alt="calendar" /><span>Calendar</span></a> <a class="dock-item" href="faq.php$session[sessionurl_q]"><img src="images/dock/faq.png" alt="FAQ" /><span>FAQ</span></a> </div> </div> <script type="text/javascript"> $(document).ready( function() { $('#dock').Fisheye( { maxWidth: 50, items: 'a', itemsText: 'span', container: '.dock-container', itemWidth: 40, proximity: 90, halign : 'center' } ) } ); </script> <br /><br /><br /><br /> <!-- / CSS Mac Dock --> 1. How to add or remove buttons? - To add buttons, paste at the end of the template Before they add: Code:
<a href= "ENLACE_DEL_BOTON" class= "fisheyeItem"> <img src= "ENLACE_DE_LA_IMAGEN" width= "30" /> <span> TITULO_DEL_BOTON </ span> </ a> 2. How to customize the background of the buttons? - Edit the file. Css is included in the dock folder and look for the following: Code:
body ( background: url (images / main-bg.gif); height: 100%; font-family: Arial, Helvetica, sans-serif; font-size: 12px; ) Do the same with the following section: Code:
.-dock container ( position: absolute; height: 50px; background: url (images / dock-bg.gif); padding-left: 20px; ) Download Now
Screenshots
Show Your Support
|
Comments |
#12
|
|||
|
|||
I'm playing with it. Have tired in a few different skins. Its a nice effect but a bit redundant because it resides under the standard menu. Nice work regardless.
Lift |
#13
|
|||
|
|||
is it gonna increase the page size ?
nice mod tho...thnx |
#14
|
||||
|
||||
y pensar que dedique horas haciendo lo mismo en flash jajaja gracias
translation and to think that dedicate hours doing the same thing in flash jajaja thanks |
#15
|
|||
|
|||
very very nice
thanks |
#16
|
|||
|
|||
good work man ... installed
|
#17
|
|||
|
|||
Spanish:
Gracias a todos ustedes... Pues viendo la buena acogida mirare si hago una nueva versi?n que trabaje con db para no tener que agregar los botones manualmente English: Thank you all ... Well, seeing the good reception when I watch a new version that works with db to avoid having to manually add the buttons |
#18
|
|||
|
|||
Hi,
Is there anyway to make this mod work on a non-vb page. I am using wordpress as frontend of my site and I was just wondering, if I can display this on my wordpress homepage. Any pointers would be appreciated. Thanks |
#19
|
|||
|
|||
if you can put this code below the header editing codes wp
Code:
<!-- CSS Mac Dock --> <script type="text/javascript" src="clientscript/jquery.js"></script> <script type="text/javascript" src="clientscript/interface.js"></script> <!--[if lt IE 7]> <style type="text/css"> div, img { behavior: url(images/dock/iepngfix.htc) } </style> <![endif]--> <link href="images/dock/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="dock" id="dock"> <div class="dock-container"> <a class="dock-item" href="$vboptions[bburl]$session[sessionurl_q]"><img src="images/dock/home.png" alt="home" /><span>P?gina Principal</span></a> <a class="dock-item" href="memberlist.php$session[sessionurl_q]"><img src="images/dock/users.png" alt="usuarios" /><span>Miembros</span></a> <a class="dock-item" href="search.php?$session[sessionurl]do=getnew"><img src="images/dock/newpost.png" alt="nuevos mensajes" /><span>Nuevos Mensajes</span></a> <a class="dock-item" href="private.php$session[sessionurl_q]"><img src="images/dock/mp.png" alt="mensajes privados" /><span>Mensajes Privados</span></a> <a class="dock-item" href="usercp.php$session[sessionurl_q]"><img src="images/dock/usercp.png" alt="panel de control" /><span>Panel de Control</span></a> <a class="dock-item" href="calendar.php$session[sessionurl_q]"><img src="images/dock/calendar.png" alt="calendar" /><span>Calendar</span></a> <a class="dock-item" href="faq.php$session[sessionurl_q]"><img src="images/dock/faq.png" alt="FAQ" /><span>FAQ</span></a> </div> </div> <script type="text/javascript"> $(document).ready( function() { $('#dock').Fisheye( { maxWidth: 50, items: 'a', itemsText: 'span', container: '.dock-container', itemWidth: 40, proximity: 90, halign : 'center' } ) } ); </script> <br /><br /><br /><br /> <!-- / CSS Mac Dock --> |
#20
|
|||
|
|||
Thanks for your quick reply but I see some vbulletin tags in that code i.e. $vboptions[bburl], so how would these tags work under wordpress????
|
#21
|
|||
|
|||
that label is only used to go to the homepage if there is need to change the url of your home page ...
But do not worry if you have cookies will work perfectly well placed ... but let me know or look we can do. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|