Book Image

Designing Next Generation Web Projects with CSS3

By : Sandro Paganotti
Book Image

Designing Next Generation Web Projects with CSS3

By: Sandro Paganotti

Overview of this book

CSS3 unveils new possibilities for frontend web developers: things that would require JavaScript, such as animation and form validation, or even third party plugins, such as 3D transformations, are now accessible using this technology."Designing Next Generation Web Projects with CSS3" contains ten web projects fully developed using cutting edge CSS3 techniques. It also covers time saving implementation tips and tricks as well as fallback, polyfills, and graceful degradation approaches.This book draws a path through CSS3; it starts with projects using well supported features across web browsers and then it moves to more sophisticated techniques such as multi polyfill implementation and creating a zooming user interface with SVG and CSS. React to HTML5 form validation, target CSS rules to specific devices, trigger animations and behavior in response to user interaction, gain confidence with helpful tools like SASS, learn how to deal with old browsers and more."Designing Next Generation Web Projects with CSS3" is a helpful collection of techniques and good practices designed to help the implementation of CSS3 properties and features.
Table of Contents (17 chapters)
Designing Next Generation Web Projects with CSS3
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Implementing the gauge in Internet Explorer 8


If we want to support Internet Explorer 8, then we need to address the lack of both the border-radius and transform properties.

For border-radius we can use a JavaScript-based polyfill such as CSS3 Pie, and we can download this polyfill from its website, http://css3pie.com/, and then copy PIE.js in our project's js folder. Next, we can include this JavaScript file from index.html along with the latest version of jQuery and js/application.js, an empty file we are going to use in a while:

<!--[if IE 8]>
  <script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
  <script src="js/PIE.js"></script>
  <script src="js/application.js"></script>
<![endif]-->

Usually CSS3 Pie automatically detects how to enhance a given element by identifying the CSS3 properties to emulate. In this case, however, we have used border-top-left-radius and border-top-right-radius whereas CSS3 Pie only supports the general...