Is it possible to create a sticky menu bar which when we hover over on each menu its name shows up?

Thanks Gu for the code and explain please click on the following link:
https://danmaxwix.wixsite.com/website-6 and hover over on the Instagram and Mail icons which are pinned on the left side you will see on each icon when you hover over a container box with slide effect shows the code is so short.Please see the code!

export function insta_mouseIn ( event ) {
let slideOptions = {
“duration” : 300 ,
“delay” : 50
};
$w ( ‘#box1’ ). show ( “slide” , slideOptions );
}

export function insta_mouseOut ( event ) {
let slideOptions = {
“duration” : 300 ,
“delay” : 50
};
$w ( ‘#box1’ ). hide ( “slide” , slideOptions );
}

the code is working well on my side.