lynne.codes

Today's code is one step closer to building tomorrow's framework.

lynne.codes

about me

hi. my name is lynne.

i like

art, code, & carbs.

i love

creating beautiful and fun designs.

blog.

Read stuff on my journey, tutorials, and reviews.

lynne.codes

Featured Code Card

View All

Image Change on Hover

with JavaScript
HTML
<img src="Avatar-EyesOpen.png" 
    onmouseover="makeImageLaugh(this)" 
    onmouseout="makeImageSmile(this)">
                                    
JavaScript
<function makeImageLaugh(image) {
    image.src = "Avatar-Happy.png";

function makeImageSmile(image) {
    image.src = "Avatar-EyesOpen.png";>
}
                                    

lynne.codes

HTML

CSS

JAVASCRIPT