چرخش عکس
بازگشت به صفحه اصلی
بازگشت به صفحه مقاله
دو ستونی
دو سطری
اجرای کد RUN »
<!DOCTYPE html> <html> <head> <style> img:hover { -webkit-transform: scaleX(-1); transform: scaleX(-1); } </style> </head> <body> <h2>Flip an Image</h2> <p>Move your mouse over the image.</p> <img src="http://cp.webmehraz.com//Files/paris.jpg" alt="Paris" width="400" height="300"> </body> </html>