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

Previous and next arrows


Ok, here comes the trickiest part: to create the arrows. What we are going to do in order to accomplish this task is:

  1. Use CSS to transform each bullet into an arrow sign by changing its shape and using a nice background image.

  2. Move all the arrows to the left of the picture, one above the other. In this way, the only visible arrow will be the one corresponding to the picture with the highest index.

  3. Hide the arrow corresponding to the selected image.

  4. Move all the arrows that follow the one corresponding to the selected image to the right, one above the other. In this way, on the left side there will remain only those arrows that correspond to the pictures with index lower than the selected one (for example, if we select picture number three, only the arrows of pictures number one and two will stay on the left, with the arrow of picture number two on the top of the stack).

  5. Pick the arrow that follows the one corresponding to the selected image and change its z-index value...