Sau đây là mã để lật và hình ảnh bằng CSS -
Ví dụ
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img:hover { transform: scaleX(-1); width: 400; height: 400; } </style> </head> <body> <h1>Flipping an Image Example</h1> <img src="https://i.picsum.photos/id/551/400/400.jpg"> <h1>Hover over the above image to see it mirrored</h1> </body> </html>
Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -
Khi di chuột qua hình ảnh, hình ảnh sẽ được phản chiếu như sau -