كود تصغير الصور مع المحافظه على جودة الصورة

القيصر

New member
26 فبراير 2019
1,003
0
0
السلام عليكم


كود تصغير الصور مع المحافظه على جودة الصورة

اضف هذا الكود في بداية

تعاريف CSS الإضافية

كود:
/* 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 */