1. Interactivity
Interactivity in the web world means that when a someone is on your site, their actions create a reaction on your page. Things such as rollovers, "like" buttons, photo sliders, and drop-down menus all fall under this category.
Some other examples of interactivity are adding comments to blog posts, taking part in polls or surveys, interacting directly with someone at a company using “live chat” and contributing to forums on social networks. Interactivity appears to be linked to credibility. If you want people to believe your website, increase the amount of interactivity.
2. Hover States (Pseudo-Classes)
The most obvious elements of interactivity is the ability of links to change when you hover over them. Links can be made to show changes in color, underline, weight, and even typeface or background color. These are important clues for the site user that suggest the image or text is a link and the changes that will happen to the page if clicked.
Use this code to establish these type of links
a {
font-size: 0.9em;
color : #FFFFFF;
margin-top: 5px;
text-align: center;
text-decoration: none;
font-weight: 300;
margin-right: 4px;
}
a:visited {
color : #FFFFFF;
font-weight : bold;
}
a:hover {
color: #EAEAEA;
text-decoration: underline;
cursor: pointer;
}
a:active {
color: #3d9997;
cursor: pointer;
}
And remember it MUST be done in this order…
a
a:visited
a:hover
a:active
font-size: 0.9em;
color : #FFFFFF;
margin-top: 5px;
text-align: center;
text-decoration: none;
font-weight: 300;
margin-right: 4px;
}
a:visited {
color : #FFFFFF;
font-weight : bold;
}
a:hover {
color: #EAEAEA;
text-decoration: underline;
cursor: pointer;
}
a:active {
color: #3d9997;
cursor: pointer;
}