Hi, Can someone please help me, i want to make a button that will show you more buttons when you click on it, or hover on it. Can someone help?, Thanks.
Is the button in one, unmoving location on the page?
If it is, you can use the onMouseIn (for hover) or onClick (for click) events to make a hidden box with buttons floatIn and floatOut animations using hide() and show(). Just make sure the box is set to hidden when the page first loads. Make sure you place the hidden box right beside the button.
E.g. (using onMouseIn).
$w("#main_button").onMouseIn( (event,$w)=>{
$w("#box_with_buttons").show('float',{"duration":2000,"direction":"right"});
});
$w("#main_button").onMouseOut( (event,$w)=>{
$w("#box_with_buttons").hide('float',{"duration":1500,"direction":"left"});
});