运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> img{ display: block; margin: 100px auto 0; width: 40%; -webkit-box-reflect: right; } </style> </head> <body> <h1>Change box-reflect property with JavaScript</h1> <p>Click the "Try it" button to set box-reflect property "below":</p> <button onclick="myFunction()">Try it</button> <img src="img_flwr.gif" alt="Flowers" width="224" height="162"> <script> function myFunction() { document.querySelector("img").style.webkitBoxReflect = "below"; } </script> </body> </html>