Help with bookshelf.

Alexandru8551

New member
So I want to do a thing like but dont really have an idea how,can someone help me?
1712361706581.png
 

Attachments

  • 1712361665229.png
    1712361665229.png
    915.2 KB · Views: 3
This requires lots of work in CSS and html. onMouse() methods used. So you can click on an item and it will come up as a new page. Of which only you can start this project off.
 
I'll give you a tip. On how to do this. Because I'm working on it now to solve it. just because I'm a java programmer. So for fun.

Code:
<h1 id="demo" onmouseover="mouseOver()" onmouseout="mouseOut()">Mouse over me</h1>

<script>
function mouseOver() {
  document.getElementById("demo").style.color = "red";
}

function mouseOut() {
  document.getElementById("demo").style.color = "black";
}
</script>
 
Back
Top