How to create hover effects for form buttons using DHTML and CSS in FrontPage| Article ID | : | 222949 | | Last Review | : | January 24, 2007 | | Revision | : | 1.3 |
This article was previously published under Q222949 SUMMARY FrontPage 2000 and FrontPage 2002 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 article describes you can create hover button
effects for regular form field buttons by using the CSS features and DHTML
formatting. MORE INFORMATION 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 lists. | | 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 |
APPLIES TO| • | Microsoft FrontPage 2000 Standard Edition | | • | Microsoft FrontPage 2002 Standard Edition |
Back to the top
| kbbutton kbprogramming kbscript kbforms kbhowto KB222949 |
| Other Support Options - Need More Help?
Contact a Support professional by Email, Online or Phone. - Customer Service
For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more. - Newsgroups
Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.
|
|