I have this function that will make this text appear on a certain div when a certain other div is hovered:
function description(x){
if(x=="tabuweb"){
document.getElementById("description_box").innerHTML = "TabuWeb is a game designed for primary school children " +
"to learn mathematics<br>" +
"The main goal of the game is to get to the finish line by answering math questions<br>" +
"Give it a try!";
}
if(x=="squares"){
document.getElementById("description_box").innerHTML = "Squares is a maze game that focus on memory<br>" +
"Click the squares around the white one. You must find a route to the blue square<br>" +
"It's all about trial and error<br>"+
"Good Luck!";
}
}
It's on my webpage (cmfproject), if you hover the two games I have there.
The question is: How can I make that text appear smoothly like a hover effect on an image to make it larger, or something other than instantly popping there?
