Animate on Scroll (AOS)

A modern web design technique is to have elements of a page fade in as the user scrolls down the page. With slight movement added too, this can draw the users attention to specific elements of the page and guide them through your web application. AOS is a simple, lightweight CSS-driven tool that is quick…… Continue reading Animate on Scroll (AOS)

Advertisement

Babel JS

JavaScript is a continually evolving development language and dominates the front-end landscape. One issue that developers face is that a new JS release offers fresh features, but the browsers do not yet support the new syntax. Created primarily for ES6, Babel JS allows developers to use the cutting-edge code and then automatically compile into old…… Continue reading Babel JS

PostCSS – Transform CSS with JS

With modern websites being required to work on a plethora of different web browsers, automating the browser compatibility of CSS is incredibly powerful. PostCSS is a development tool, which transforms CSS with JavaScript. Out of the box, PostCSS compiles the basic CSS you write and automatically creates all the browser-specific prefixing. Simply specify the list…… Continue reading PostCSS – Transform CSS with JS