hover effects using html5 and css?
so some example coding.

Recommended Answers

All 2 Replies

Simple one
<a class="effect" href="#">HOVER ME</a>
css

.effect{
    color:#ff0000;
    transition:2s;
    text-decoration:none;
}
.effect:hover{
    color:#0000ff;
    transition: all 2s ease;
    transform: rotate(720deg);
    font-size:20px;
}

live example
http://jsfiddle.net/hawkiq/gxa9amuc/

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.