اØمد
عدد المساهمات : 203 تاريخ التسجيل : 21/03/2011
| موضوع: كود تصغير الصور الثلاثاء مارس 22, 2011 7:06 am | |
| كود تصغير الصور مع المحافظه على جودة الصورة
اضف هذا الكود في بداية
تعاريف CSS الإضافية
رمز PHP:
/* BEGIN Image resize */ #posts IMG { max-width: 95%; height: expression(this.height > 1024 ? "1024px" : true); width: expression(this.width > 400 ? "400px" : true); }
#collapseobj_threadreview IMG { max-width: 95%; height: expression(this.height > 1024 ? "1024px" : true); width: expression(this.width > 400 ? "400px" : true); } /* END Image resize */ | |
|