किसी इमेज को फ़्लिप करने के लिए ट्रांसफ़ॉर्म सीएसएस प्रॉपर्टी का इस्तेमाल करें. आप माउसओवर पर किसी छवि को फ़्लिप करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं:
उदाहरण
<!DOCTYPE html> <html> <head> <style> .myimg:hover { transform: scaleX(-1); } </style> </head> <body> <h2>Heading One</h2> <p>Let's flip the image on mouse over:</p> <img class = "myimg" src = "https://www.tutorialspoint.com/python/images/python_data_science.jpg" alt = "Python Data Science" width = "300" height = "200"> </body> </html>