Can you give a sound effect when you hover over an object, text, etc.? I wanted to hover over an object with a 'hover' effect to give it a sound effect, any sound that I set, to apply that with Css? or just with JS?
.menu{ display:flex;
flex-wrap: wrap;
}
.menu > div{ background-color:#09F;
padding:20px;
cursor:pointer;
margin-left:10px;
border-radius:30%;
font-weight:bold;
box-shadow:0 3px 3px rgba(0,0,0,.4);
}
.menu > div:hover{ background-color:#0CC;
transform:scale(1.1);
box-sizing:border-box;
box-shadow: 1px 1px 1px 2px #333333;}
<div class="menu">
<div>Botão-1</div>
<div>Botão-2</div>
<div>Botão-3</div>
</div>