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

The HTML5 video element


The HTML5 specification introduced new multimedia elements to allow a better integration of video and audio within a web page without the need to embed external plugins, such as Flash. Embedding a video is now as simple as writing this:

<video src="path/to/video">

There are a few caveats to consider, though; first of all, each browser supports only a fraction of the video codecs available, so if we want our element to be played, we need to encode our video at least in mp4 and webm and then use an alternative syntax to include both of these formats, as shown here:

<video>
  <source src="path/to/video.mp4" type="video/mp4">
  <source src="path/to/video.webm" type="video/webm">
</video>

Miro (http://www.mirovideoconverter.com/) is a good, free video converting software and works with both the Mac and Windows operating systems. It's really easy to use—just choose the desired output format and drop the file into the application window to begin...