Вы можете попробовать это с jQuery.
<html>
<head>
<!-- Path to your jQuery core js library or you can use one from Google.
<script type="text/javascript" src="jquery.min.js" />
<!-- Path to your jQuery UI js library or you can use one from Google.
<script type="text/javascript" src="jquery-ui.min.js" />
</head>
<body>
<canvas id="myCanvas" ..>..</canvas>
</body>
</html>
А когда вы хотите исчезнуть, просто позвоните:
$("#myCanvas").fadeOut(2500); // 2 seconds and a half, for example
Есть и другие "эффекты", такие как:
$("#myCanvas").slideUp(1500); // 1 and a half seconds, for example