menu drop down by Deluxe-Menu.com

DHTML Faq » Which parameter I have to set to produce pop up menu javascript to be bold on mouseover?

Which parameter I have to set to produce pop up menu javascript to be bold on mouseover?

Filed under: Recent Posts — Tags: , , , , — admin @ June 27, 2009 at 1:45 am

Q:

Please identify the parameter I need to set to produce … Tree
menu items start out as normal text , then Bold text for tree menu
items on the onmouseover event . After mouse out, text returns to
normal.

A:

Unfortunately, Deluxe Tree doesn’t have such a feature. You should add
the following code in your data file:

function changeFont(obj, over)
{
obj.style.fontWeight = over ? ‘bold’ : ‘normal’;
obj.style.fontSize = over ? ‘13px’ : ‘12px’; // You can not use this line
}

var tmenuItems = [

["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Security</div>","", "", "", "", "", "", "", "", ],
["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Ease of Access</div>","", "", "", "", "", "", "", "", ],
["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Internet Options</div>","", "", "", "", "", "", "", "", ],
["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Windows Firewall</div>","", "", "", "", "", "", "", "", ],
["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Network and Internet</div>","", "", "", "", "", "", "", "", ],
];

Please, notice also that you should add this function every time when
you change your pop up menu javascript in Deluxe Tuner application, as Tuner deletes
this function.

You can find the example here
http://deluxe-tree.com/data-templates/vista-style-7-template-sample.html

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment