diff --git a/about.html b/about.html index 14c4e85..442d968 100644 --- a/about.html +++ b/about.html @@ -16,7 +16,7 @@ - + @@ -83,12 +83,16 @@
Connect
+ +
+ + - \ No newline at end of file + diff --git a/static/js/hideCursor.js b/static/js/hideCursor.js new file mode 100644 index 0000000..e6ac20a --- /dev/null +++ b/static/js/hideCursor.js @@ -0,0 +1,14 @@ +$(document).ready(function() { + var idleMouseTimer; + var forceMouseHide = false; + + // $("body").css('cursor', 'none'); + + $("#areaToHideCursor").hover(function(e) { + $("body").css('cursor', 'none'); + }); + + $("#areaToHideCursor").mouseleave(function(e) { + $("body").css('cursor', ''); + }); +});