HTML 的 onresize 事件属性
当用户调整浏览器窗口大小时,将触发 HTML onresize 属性。
语法
以下是语法:
<tagname onresize=”script”></tagname>
让我们看一个 HTML onresize 事件属性的示例:
示例
<!DOCTYPE html> <html> <head> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; padding: 20px; } </style> </head> <body onresize="resizeFn()"> <h1>HTML onresize Event Attribute Demo</h1> <p>Now resize the browser window</p> <script> function resizeFn() { document.body.style.background = 'linear-gradient(45deg, #8BC6EC 0%, #9599E2 100%) no-repeat'; } </script> </body> </html>
输出
现在调整浏览器的窗口大小以观察 onresize 事件属性如何工作。
广告