Please don’t ever go to a website and go ‘oh its crap, it’s got bugs, it doesn’t work properly’ because behind that website is thousands of lines of code. My website alone is 512 lines of code.
Take what you would presume is a relatively easy task - Make a box on a page open differently on mobile than it does on a desktop. Believe it or not, the Jquery behind that is quite big;
if($( window ).width()<551) { $(".right.top").on("click", function(){ $(".portfolio").css('z-index', 1); $(".portfolio").animate({opacity:"1"}, "slow"); $(".content").height("calc(100% - 70px)"); $(".content").delay(300).animate({"top": "70px" }, "slow"); });
All that does is make the portfolio on my website open when you click the button. Now imagine what it the code looks like to build even the Tumblr post creator area










