Main Page: Difference between revisions
From billsfield.org
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
"mouseover", | "mouseover", | ||
(event) => { | (event) => { | ||
let currentHeight = event.target.offsetHeight; | let currentHeight = event.target.offsetHeight; | ||
event.target.style.height = currentHeight + | event.target.style.height = currentHeight + 10; | ||
}, | }, | ||
false, | false, |
Revision as of 15:42, 28 November 2023
This site is an open forum. A newsletter. There are, here, a few characters that write on this site about a few different things.
--this area is to be filled out-- --a uniting page, not neccesarily an introduction, but a route into the various paths of this site.--
<html>
CANOL
<img src="../images/YukonRoad.png" width="100%" style="position: absolute;"></img>
<script> let canol = document.getElementById("canolHeading");
canol.addEventListener( "mouseover", (event) => {
let currentHeight = event.target.offsetHeight; event.target.style.height = currentHeight + 10; }, false, ); </script>
</html>