كود css لأضافة حركة التكبير و التصغير للصور في المساهمات
اليوم نقدم لكم كودين عبارة عن css يمكنكم أختيار كود
الأول
عبــارة عن كود يقوم بتكبير الصور في المساهمات بشـكل مميز يفضله الكثيرون
صورة للمثال
أليكم الكود
- الكود:
-
.postbody img {
max-width: 500px;
/* Resize the image for IE6 */
width: expression(this.width > 500 ? 500: true);
}
/*GROW*/
.postbody img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.postbody img:hover {
max-width: 600px;
/* Resize the image for IE6 */
width: expression(this.width > 600 ? 600: true);
}
ثانيا:
الكود يقوم بعمل حركة التصغير للصورة بعكس الحركة الاولى
صورة للمثال
- الكود:
-
.postbody img {
max-width: 600px;
/* Resize the image for IE6 */
width: expression(this.width > 600 ? 600: true);
}
/*GROW*/
.postbody img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.postbody img:hover {
max-width: 500px;
/* Resize the image for IE6 */
width: expression(this.width > 500 ? 500: true);
}
هذه الاكواد عبارة عن css يتم أضافتها في ورقة تصميم css