Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
h1{
color: green;
}
h1:hover{
color: red;
}
<h1>
<img src="bild.jpg" alt="ein Bild">
<br>
Eine Überschrift
</h1>
$("#imageId").hover(
function() {$("h1").css("color", "red")},
function() {$("h1").css("color", "black")}
);