आजकल लोग बस CSS3 के बदलावों का उपयोग कर रहे हैं क्योंकि यह JS के साथ खिलवाड़ करने की तुलना में बहुत आसान है , ब्राउज़र समर्थन काफी अच्छा है और यह केवल कॉस्मेटिक है इसलिए यह काम नहीं करता है।
कुछ इस तरह काम हो जाता है:
a {
color:blue;
/* First we need to help some browsers along for this to work.
Just because a vendor prefix is there, doesn't mean it will
work in a browser made by that vendor either, it's just for
future-proofing purposes I guess. */
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
/* ...and now for the proper property */
transition:.5s;
}
a:hover { color:red; }
आप विशिष्ट सीएसएस संपत्तियों को अलग-अलग समय के साथ परिवर्तित कर सकते हैं और प्रत्येक घोषणा को अल्पविराम से अलग करके कार्यों को आसान बना सकते हैं, जैसे:
a {
color:blue; background:white;
-o-transition:color .2s ease-out, background 1s ease-in;
-ms-transition:color .2s ease-out, background 1s ease-in;
-moz-transition:color .2s ease-out, background 1s ease-in;
-webkit-transition:color .2s ease-out, background 1s ease-in;
/* ...and now override with proper CSS property */
transition:color .2s ease-out, background 1s ease-in;
}
a:hover { color:red; background:yellow; }
यहां डेमो करें