- Filters and Transitional effects - Top items and submenus have a shadow - Visible over select boxes, iframes, pdf, flash, Java applets. - Hundreds of pre-designed templates - Items with icons - Text aligned to left - Image arrows - Horizontal or vertical orientation
Use a mouse to move a menu as a usual window. Also you can create the menu where each submenu can be "separated" from the menu (MS Office toolbar-like mode).
When the page is scrolled the menu remains visible. The menu can "float" along one or two coordinate axes.
There can be multilevel menus - create as many rows of the menu as necessary. Any submenu in its turn can include different number of columns.
Q: I downloaded the trial version of deluxe-menu. I created a four tab menu using the tab'stab menu generator; so far so good. I read the tutorial where to past codeand ensuring all items wire in the menudir/; so far so good. The problem, you talk about two> files 'dmenu.js' & 'data.js', these files were not created bydeluxe-menu program. Where are they, so that I can see if this thing works before buying, so far; not so good.
A:You may have another name for your data file (not data.js).
If you want to use tab menu you'll have dtabs.js engine file and data file.
1. create and save .js file with your menu parameters in Deluxe Tuner(you can use "File/Save as/HTML" function). You can enter any name you like, for example enter "tab". So you'llhave tab.html, tab.js files and "tab.files" folder with all menu files. 2. open your .html page in any text editor 3. Copy generated tab.js file and "tab.files/" folder in the same folderwith your index.html page. 4. Open generated menu.html in any text editor and copy several rows of code (<script> tags), For info see:http://deluxe-tabs.com/product-info/?installation
<head> <!-- Deluxe Menu --> <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript" src="tab.files/dmenu.js"></script> </head> <body> ... <script type="text/javascript" src="tab.js"></script> ...
That's all.
Q:
I figure I'm missing something basic ....
I've created a simple horizontal menu and uploaded the various files to to my website go generate the bar food menu
How do I add content to each tab rollovers so that the content will appear on this same page (as opposed to having to move to another page)?
i.e. when you click on starters, you see the starter below, when you click on mains you see the mains below etc. etc.
I'm new to this .....
A:You should paste your content in the <div> .. </div> tags.
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field: "object:" - means that there is object id after it; "link:" - means that there is a link after it. "javascript:" - means that there is a javascript code after it, for example:javascript:alert(\'Hello!\')
Very interested by your product, I want to know, before buy, if I can call javascript function when the user click on a menu Items;
you have this example, but I want the possibility to call a javascript function in the client side :
var menuItems = [ [text, "javascript:alert('Hello, world!')", icon1, icon2], ];
Is it possible, if yes could you give the sample, because Milovic menu have a javascript:function call, what about your product ?
Thank you for the answer.
A:You're able to use Javascript for each item, for example:
var menuitems = [ ["item text", "javascript:your_code_here"] ];
Unfortunately, you can't assign onmouseover/onClick event to each item. However, you can achieve this by using standard html objects within items, for example:
var menuitems = [ ["<div onClick='your_code_here'>item text</div>", "index.html"] ];
Unfortunately we don't have such example.
Q:
Just one more question.
I'm making a drop menu sample but I want the dropdown sub menus to drop up! ie: the nav bar will actually be at the bottom of the page so when you hover over, I need the sub items to rise up.
Can you force this? I can't seem to find anywhere to do it.