Home     SSI Lab     CSS Templates     CSS     Htaccess     Web Design     XHTML

CSS Tutorials

graphic-img   

SSI-D HOME

SSI LAB

CSS Templates

CSS

Introduction

IE Related

General

.Htaccess

Web Design

(X)HTML

HTML-Kit

Resources





Menu Rollover Effect using blend Transition

Introduction

This guide shows you how to add a transition effect to the rollover menu we created in Menu Rollover with CSS. You will need to read that tutorial if you need to understand how to build the menu because we will only post the code here without an explanation.

Tested in IE6 Icon

As this code uses filters, it is of course IE only at the moment :-(



Menu Code

The menu we are going to add the transition effect to was created with a HTML list using CSS to control the presentation to achieve the rollover look. The result of that tutorial is shown below.



To add the transition effect we need to add three components:

  1. The transition filter
  2. A javascript snippet
  3. Link events to activate the transition


Transition Filter

The transition filter is a short line of CSS which we place into the overall link styles which we specified in Step 4 of the Menu Rollover guide:

#list-menu a {
display: block;
width:110px;
padding: 2px 2px 2px 10px;
border: 1px solid #000000;
background: #dcdcdc;
text-decoration: none;
filter:blendTrans(duration=0.5);



Javascript Function

Place the following javascript function into the <head> of your document (or in an external linked javascript file).

<script type="text/javascript">
<!--
function lite(obj) {
if(document.all&&!window.opera) {
obj.filters.blendTrans.apply();
obj.filters.blendTrans.play();
}
}
-->
</script>



Activating the rollover

We then need to activate the transition effect when someone mouseovers the links. We do this using the onmouseover and onmouseout events which we place into each link in the menu.

<div id="list-menu">
<ul>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Home</a></li>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Products</a></li>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Services</a></li>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Solutions</a></li>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Support</a></li>
<li><a href="#" onmouseover="lite(this)" onmouseout="lite(this)">Contact</a></li>
</ul>
</div>


This results in the following:



Note: Although these filters currently only work in IE your menu will still display just as normal in other browsers so at least 85%* of your visitors will be able to view this effect.

For more IE CSS Filters...

Go to the HTML List version...

Go to the Tables version...


*Source: BrowserNews.


Advertisement Sign up for free to PayBox.me today and get $25 just for joining AND earn up to $20 per day for participating.