Quote:
Originally Posted by rokked
Uploaded and it works great.
Any way to get the size of the icons to get less dramatic when you scroll over though? Like instead of going from 50 to 100 pixels, from 50 to 75?
|
yes.. in the afm_fisheye_menu template look for this code:
Code:
$('#dock').Fisheye(
{
maxWidth: 50,
items: 'a',
itemsText: 'span',
container: '.dock-container',
itemWidth: 40,
proximity: 90,
halign : 'center'
}
change the 'proximity' value to less so that the menu won't pick up your mouse from a mile away... and will also make the effect a bit less dramatic
change 'maxWidth' to the size in pixels you want the image to be when hovered over it.. and 'itemWidth' to the size when the menu is idle without being rolled over... If you go to
my site you can see how mine is a bit different than the one in the release... here is what my code looks like...
Code:
$('#dock').Fisheye(
{
maxWidth: 40,
items: 'a',
itemsText: 'span',
container: '.dock-container',
itemWidth: 30,
proximity: 30,
halign : 'right'
}
Hope this helps a bit...