Hover Buttons - Reference - Web Development - Neils Resource Web  Hover Buttons - Reference - Web Development - Neils Resource Web  Hover Buttons - Notes - WEB DEV. - NEILS RESOURCE WEB



Summary of Content
FrontPage versions 2000 and later contain a rich set of Cascading Style Sheet (CSS) and Dynamic HTML (DHTML) authoring capabilities that allow you to create a variety of hover effects. This Microsoft article describes how you can create hover button effects for regular form field buttons by using the CSS features and DHTML formatting.

To create hover button effects for Form Field buttons, follow these steps:
1. Create a new, blank page.
2. On the Insert menu, point to Form, and click Form.
3. To apply default "Submit" button colors, follow these steps:
 
a. Right-click the Submit button, and click Form Field Properties.
b. Click Style.
c. Click Format, and then Border.
d. Click the Shading tab.
e. Click to select a color in the Foreground color and Background color ists.
f. Click OK three times to return to the document.
4. To insert DHTML hover colors, follow these steps:
 
a. Click the Submit button.
b. On the Format menu, click Dynamic HTML Effects.
c. In the On list, click to select Mouse Over.
d. In the Apply list, click to select Formatting.
e. Click to select Choose Border in the list to the right of the Apply list.
f. Click the Shading tab.
g. Click to select a color in the Foreground color and Background color lists.
h. Click OK, and close the DHTML Effects toolbar.
5. To move the hover colors to the Submit button, follow these steps:
 
a. Switch to HTML view.
b. In HTML view, move the following code from the <p> tag to the to your <input> tag:
 dynamicanimation="fpAnimformatRolloverFP1"
   fprolloverstyle="background-color: #000000; color: #FFFFFF"
   onmouseover="rollIn(this)"
   onmouseout="rollOut(this)"
   language="Javascript1.2"
								
Note: The values for "background-color" and "color" may be different from those shown in the previous code.
6. If you want, repeat the last few steps for the Reset button.
7. When you have completed the previous steps, your HTML code may look similar to the following HTML code example:
   <input type="submit" value="Submit"
      style="background-color: #008000; color: #000000"
      dynamicanimation="fpAnimformatRolloverFP1"
      fprolloverstyle="background-color: #000080; color: #FFFFFF"
      onmouseover="rollIn(this)"
      onmouseout="rollOut(this)"
      language="Javascript1.2">

   <input type="reset" value="Reset"
      style="background-color: #800000; color: #FFFFFF"
      dynamicanimation="fpAnimformatRolloverFP1"
      fprolloverstyle="background-color: #000080; color: #FFFFFF"
      onmouseover="rollIn(this)"
      onmouseout="rollOut(this)"
      language="Javascript1.2">
						
8. Save this page to your Desktop as "HoverTest.htm" and minimize FrontPage.
9. You will notice that FrontPage saved the following two files to your Desktop:
 
HoverTest.htm.
Animate.js.
The first file is the page you created in the previous steps, the second file is a collection of DHTML functions that the page will use.
10. Open "HoverTest.htm" (in Internet Explorer 4.0 or later). Notice that as you move your mouse over each button, you should see the color change

Hyperlink titles may have been abbreviated, (right click on the link and select properties for the full URL)
A double mouse click anywhere on the page will take you back to the top (except when over hyperlinks)

Last Updated 04/03/2008 - Hover Buttons - Reference - Web Development - Neils Resource Web