Book Image

Mastering PostCSS for Web Design

By : Alex Libby
Book Image

Mastering PostCSS for Web Design

By: Alex Libby

Overview of this book

PostCSS is a tool that has quickly emerged as the future of existing preprocessors such as SASS and Less, mainly because of its power, speed, and ease of use. This comprehensive guide offers in-depth guidance on incorporating cutting-edge styles into your web page and at the same time maintaining the performance and maintainability of your code. The book will show how you can take advantage of PostCSS to simplify the entire process of stylesheet authoring. It covers various techniques to add dynamic and modern styling features to your web pages. As the book progresses, you will learn how to make CSS code more maintainable by taking advantage of the modular architecture of PostCSS. By the end of this book, you would have mastered the art of adding modern CSS effects to web pages by authoring high performing, maintainable stylesheets.
Table of Contents (21 chapters)
Mastering PostCSS for Web Design
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Chapter 7. Animating Elements

A question: if you had the choice of three websites: one static, one with badly done animation, and one which has been enhanced with subtle use of animation, which would you choose? Well, my hope is the answer to that question should be number three: animation can really make a site stand out if done well, or fail miserably if done badly!

So far, our content has been relatively static, save for the use of media queries. It's time, though, to take a look at how PostCSS can help make animating content a little easier. We'll begin with a quick recap on the basics of animation, before exploring the route to moving away from pure animation, through to SASS, and finally, across to PostCSS. We will cover a number of topics throughout this chapter, which will include:

A recap on the use of jQuery to animate content:

  • Switching to CSS-based animation

  • Exploring the use of pre-built libraries such as Animate.css

  • Exploring the options available when making the change to using...