Source code
Revision control
Copy as Markdown
Other Tools
<?xml version="1.0" encoding="UTF-8"?>
width="100%" height="100%" viewBox="0 0 480 360">
<title>Event attributes - onwheel</title>
<metadata>
<h:meta name="assert" content="onwheel attribute runs script in response to wheel events"/>
</metadata>
<style>
text {
font-size: 12px;
}
#target {
fill: yellow;
}
</style>
<script>
'use strict';
function complete() {
document.getElementById('target').style.fill = 'lime';
}
</script>
<text x="30" y="30">Select the box, use the mouse wheel and check that the box become green.</text>
<rect id="target" x="140" y="160" width="200" height="200" onwheel="complete()" />
</svg>