Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Ajax Fisheye Menu Details »»
Ajax Fisheye Menu
Version: 0.95b, by BecomeUnbroken BecomeUnbroken is offline
Developer Last Online: Feb 2010 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.6.8 Rating:
Released: 10-16-2007 Last Update: 11-05-2007 Installs: 159
Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations Is in Beta Stage  
No support by the author.

This modification was just something random that I adapted to vBulletin.. I will release it with the status of beta, and when it has been proven to be stable, I will update it...

Demo of fisheye effect:
Demo
Demo - Vbulletin Live example (slightly modified from original release)

Installation:
Step 1:
- Extract and Upload contents of the "upload" folder to your server

Step 2:
Admin CP> Plugins and Products> Manage Products> Add/Import Product> Import> product-ajax_fisheye_menu.xml

Step 3:
Admin CP> vBulletin Options> Ajax Fisheye Menu >
Change.... Path to 'fisheye' directory
Attachment 72006

Step 4:
- Add
Code:
$afm_menu
in whatever template you decide to show menu (most likely navbar or header template)

Step 5(skip if vBa CMPS is not installed):
If you have vBadvance CMPS installed, you will need to do the following in order for this to work on your homepage as well:
- Admin CP> vBa CMPS > Default Settings> Main Options>
- Under the 'Portal Output Global Variables' setting you will need to add "afm_menu"

Step 6:
- Now you will need to configure the menu entries.. open the 'afm_fisheye_menu' template under the 'Ajax Fisheye Menu' template group.
- To add new menu items just use the following format:
Code:
<a class="dock-item" href="#"><img src="fisheye/images/home.png" alt="home" /><span>Home</span></a>


To Update:

- Reupload contents of upload folder to forum root...
- Import new product XML file with the overwrite setting on

V. 0.95-beta
+ Added a couple necessary AdminCP options
--- Enable/Disable option
--- Path to fisheye directory option

V. 0.94-beta
+ Fixed IE Quick Edit bug
+ Fixed IE font size drop down bug
(I have a feeling that this version will fix most of the Ajax related bugs, but members will have to let me know...)

V. 0.93-beta
+ Fixed fisheye directory error... now you only have to upload to your root..
+ Mood Manager now able to change moods in IE..
+ Added a folder in zip called 'extras' that include a set of blue themed icons made from the original set...

V. 0.92-beta
[s] + Added $vboptions[bburl] reference to images and scripts for smoother integration (thanks yoyoyoyo)[/s]
+ Added install.txt within zip file

V. 0.91-beta
+ Fixed IE blocks bug
+ Moved Stylesheet to Templates for easier editing
-- You can now edit the stylesheet by going to the 'afm_fisheye_stylesheet' template
+ Cached Templates

V. 0.9 - beta release
+ Fisheye effect

Step 6:
Come back to this thread and give me some feedback...

Known Bugs:
[s] - One user reports hover effect doesn't work in opera browser[/s]
- User Reports conflicts with shoutbox and casino mod
[s] - Unable to change mood in Mood Manager while using IE6.. works in IE7 and firefox[/s]
[s] - Unable to use Quick Edit in IE[/s]
- User Reports bug with VBPicGallery: "
This mod looks fine everywhere except the gallery, where the icons show as a huge size, with text next to them."
[s] - Advanced Editor has weird code inside text size selector and font selector drop down boxes[/s]

Future Features
AdminCP Options
[s] - Enable/Disable[/s]
- Maybe options to set images and links in menu
- Any other suggestions welcome...


Script adapted from:
http://www.ndesign-studio.com/blog/mac/css-dock-menu

Here are some free icons you could possibly use with the dock:
http://www.dezinerfolio.com/2007/02/...a-gloss-icons/

This site has hundreds of icons.. but the site is in chinese...
http://www.tucoo.com/icon/index.htm
[S] I will provided limited support for this hack, and will continue to work on and update it when I can.. [/S]

I am no longer developing or supporting this MOD...


There are other things in life more important than VB you know

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #82  
Old 10-20-2007, 06:51 AM
djyarasa djyarasa is offline
 
Join Date: Jun 2007
Location: Turkey
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There was some problem I found.
1. Fisheye folder, javascript and style.css etc. must be in public_html but images, must be in public_html/FORUM folder
(public_html/fisheye/js folder and iepngfix.htc and style.css)
(public_html/forum/fisheye/images/-images-.png etc.)

If they are on other local, it is not working safely (:

And, if you wanna use just bottom dock, in the templates, ajax.... afm_fisheye_menu -you must chance id to
Code:
<!--bottom dock -->
<div class="dock" id="dock2">
  <div class="dock-container2">
and on afm_fisheye_stylesheet maybe you must delete this code

Code:
/* dock2 - bottom */
#dock2 {
	width: 100%;
	bottom: 0px;
	position: absolute;
	left: 0px;
to
Code:
/* dock2 - bottom */
#dock2 {
	width: 100%;
	bottom: 0px;
	left: 0px;
because "position: absolute;" have some problem on the screen,
If it has not some graphy like be on screen bottom, not page bottom or codes area, you must delete it...

And BecomeUnbroken, I like your site's navigator menu (: can you give me codes? (: (:
It is not include on the alienblue thema...
Reply With Quote
  #83  
Old 10-20-2007, 07:50 AM
apdcanari apdcanari is offline
 
Join Date: May 2005
Location: Belgique
Posts: 97
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good hack !

View on my site : http://www.apdcanari.com/

View on my forum : http://www.apdcanari.com/forum/

Thanks !

C?dric
Reply With Quote
  #84  
Old 10-20-2007, 08:59 AM
MiahBeSmokin420 MiahBeSmokin420 is offline
 
Join Date: May 2007
Location: Ohio
Posts: 311
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djyarasa View Post
There was some problem I found.
1. Fisheye folder, javascript and style.css etc. must be in public_html but images, must be in public_html/FORUM folder
(public_html/fisheye/js folder and iepngfix.htc and style.css)
(public_html/forum/fisheye/images/-images-.png etc.)

If they are on other local, it is not working safely (:

And, if you wanna use just bottom dock, in the templates, ajax.... afm_fisheye_menu -you must chance id to
Code:
<!--bottom dock -->
<div class="dock" id="dock2">
  <div class="dock-container2">
and on afm_fisheye_stylesheet maybe you must delete this code

Code:
/* dock2 - bottom */
#dock2 {
	width: 100%;
	bottom: 0px;
	position: absolute;
	left: 0px;
to
Code:
/* dock2 - bottom */
#dock2 {
	width: 100%;
	bottom: 0px;
	left: 0px;
because "position: absolute;" have some problem on the screen,
If it has not some graphy like be on screen bottom, not page bottom or codes area, you must delete it...

And BecomeUnbroken, I like your site's navigator menu (: can you give me codes? (: (:
It is not include on the alienblue thema...

ok look i tried that

it worked and made the second one apear

BUT

its not in the footer

so what im going to attempt to do is this

im going to redownload that whole thing

then im going to recode it with diffrent words mostlikly just changing afm to mfa or something

then im going to reinstall it and then just add it in the footer that way

seems alot easier then i will just have 2 products the same name and then ya tada

well ill let you know how it works when im done seeing as how you are the coder

but it should only take about 2 mins to do with dreamweaver so ya ima go do that peace
Reply With Quote
  #85  
Old 10-20-2007, 10:48 AM
Konstantinos Konstantinos is offline
 
Join Date: Apr 2006
Posts: 443
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very cool but there is a conflict with mod AJAX MOOD MANAGER. when this is installed mood manager doesnt change , when i disable it mood manager changes . Need a fix
Reply With Quote
  #86  
Old 10-20-2007, 11:09 AM
MiahBeSmokin420 MiahBeSmokin420 is offline
 
Join Date: May 2007
Location: Ohio
Posts: 311
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

seems like thats something to do with something on your end man

i have the mood manager

and i just got done recoding the entire mod so i could have it in the header and footer at the same time

all my stuff works great

here ill even give you a demo

Click Here For Demo That Wont Go Away
Reply With Quote
  #87  
Old 10-20-2007, 11:18 AM
Konstantinos Konstantinos is offline
 
Join Date: Apr 2006
Posts: 443
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try to change your mood - keep in mind i have the fish code in header and not navbar
Reply With Quote
  #88  
Old 10-20-2007, 11:23 AM
MiahBeSmokin420 MiahBeSmokin420 is offline
 
Join Date: May 2007
Location: Ohio
Posts: 311
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i just did right after before i made that post

i would post something saying my stuff works fine if it dont

trust me i have had 15 staff members crawling around my site testing every feature

the reason for that is cause i have been doing alot of style edites to the templates and stuff like that

sorry man mine works great

what version of vb you on?

and also do you do manual template edits for all products or do you let most mods do auto edits?
Reply With Quote
  #89  
Old 10-20-2007, 11:32 AM
Konstantinos Konstantinos is offline
 
Join Date: Apr 2006
Posts: 443
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

3.6.8 mostly manual
Reply With Quote
  #90  
Old 10-20-2007, 11:38 AM
Konstantinos Konstantinos is offline
 
Join Date: Apr 2006
Posts: 443
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

definitely has nothing to do with templates cause i just checked with another style which doesnt have the fish code at all anywhere and still ajax mood manager doesnt change, when i disable fisheye it works. so its not a template thing
Reply With Quote
  #91  
Old 10-20-2007, 11:39 AM
MiahBeSmokin420 MiahBeSmokin420 is offline
 
Join Date: May 2007
Location: Ohio
Posts: 311
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

see i use 3.6.7 cause i know that alot of stuff dont work right with 3.6.8

plus i dont want to have to go back through and do all the damn edits to the php files again

but anyways

where are you putting it at in the nav bar?

if you want whats the link to you site that you have it on and i can look at it

but there realy aint much i can do with out being in the admin cp and im not tring to get up in your stuff man no way

unless there is money involved lol
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:08 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04943 seconds
  • Memory Usage 2,324KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete