
LearnChess Aug. 4/2016
LearnChess is doing well. With 1567 unique visitors as the new record. (smashing the previous 608)
What has changed since the last update?
-The profiles are now mobile friendly. (For proof, resize the browser window to see the proof)
-The videos page has been updated. (Includes the new menu, which should be used in the unpopular articles design.
-The LearnChess puzzles have been slightly updated
-The LearnChess homepage has also been updated. (Check out the old version of v2 for the difference).
How come this wasn't made in LearnChess v1?
- I had no knowledge of jquery. jquery is a form of JavaScript that helps create the cool "LEARN MORE" button on the Start page, and makes the menu possible.
(Here is the code for the menu in jquery)
$(document).ready(function() {
$("#menubtn").click(function() {
$(".menu").css("display","block");
$("#topbar").css("display","none");
$("#page").css("display","none");
$("#menubtn2").click(function() {
$(".menu").css("display","none");
$("#topbar").css("display","block");
$("#page").css("display","block");
});
});
$("#menubtn").mouseenter(function() {
$("#hint").css("display","inline-block");
});
$("#menubtn").mouseleave(function() {
$("#hint").css("display","none");
});
});
- And I'm better at web design and code overall.
Thanks for reading. Of course, many things are not perfect, but I'll try to find a solution to the problems.
(view this page here)