To create hover button effects for Form Field buttons,
follow these steps:
- Create a new, blank page.
- On the Insert menu, point to Form, and click Form.
- To apply default "Submit" button colors, follow these steps:
- Right-click the Submit button, and click Form Field Properties.
- Click Style.
- Click Format, and then Border.
- Click the Shading tab.
- Click to select a color in the Foreground color and Background color lists.
- Click OK three times to return to the document.
- To insert DHTML hover colors, follow these steps:
- Click the Submit button.
- On the Format menu, click Dynamic HTML Effects.
- In the On list, click to select Mouse Over.
- In the Apply list, click to select Formatting.
- Click to select Choose Border in the list to the right of the Apply list.
- Click the Shading tab.
- Click to select a color in the Foreground color and Background color lists.
- Click OK, and close the DHTML Effects toolbar.
- To move the hover colors to the Submit button, follow these
steps:
- Switch to HTML view.
- 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.
- If you want, repeat the last few steps for the Reset button.
- 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">
- Save this page to your Desktop as "HoverTest.htm" and minimize FrontPage.
- 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. - 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