আজকাল লোকেরা কেবল CSS3 রূপান্তরগুলি ব্যবহার করছে কারণ এটি জেএসের সাথে জগাখিচা করার চেয়ে অনেক সহজ , ব্রাউজার সমর্থন যুক্তিসঙ্গতভাবে ভাল এবং এটি কেবল প্রসাধনী তাই এটি কাজ না করে তা বিবেচ্য নয়।
এরকম কিছু কাজটি সম্পন্ন করে:
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; }
আপনি বিভিন্ন ঘোষণাপত্রকে কমা দিয়ে পৃথক করে আলাদা আলাদা সময় এবং স্বাচ্ছন্দ্য সহ সুনির্দিষ্ট CSS বৈশিষ্ট্যগুলি স্থানান্তর করতে পারেন:
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; }
এখানে ডেমো