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

Embedding SVG


We'd like to use Scalable Vector Graphics (SVG) instead of a raster image where supported. We're building a ZUI so our infographic needs to be zoomed, and using a vector graphic allows us to preserve the quality of the object. Vector images, in fact, are size independent and thus don't get pixelated when scaled.

Note

More information about vector images and SVG can be found on Wikipedia at http://en.wikipedia.org/wiki/Vector_graphics.

There are three ways to embed an SVG:

  • As an <object> element. This is the most supported way of adding SVG. However, it is limited in a sense that the SVG is treated like an external element and therefore cannot be manipulated through JavaScript (except for some obvious properties, such as width and height).

  • As a value for CSS where an image is required.

  • Directly into our HTML code. This approach offers the most interaction available between the SVG and the page. As we'll see later in this chapter, we can interact with the vector graphic directly...