Yes, try to set the CSS style with position: fixed (or absolute):
canvas{
position:absolute;
left:0;
top:0;
z-index:-1;
}You can also set it to the following:
<style>
#canvasSection{
position:fixed;
}
</style>
Yes, try to set the CSS style with position: fixed (or absolute):
canvas{
position:absolute;
left:0;
top:0;
z-index:-1;
}You can also set it to the following:
<style>
#canvasSection{
position:fixed;
}
</style>