CSS Zoom
I've found three cool ways to create a zoom effect in pure CSS3. These are done using:
font-size: If you are using a character, then it is possible to zoom in and out by changing thefont-sizeproperty on hover and combining it with the transition property for a smooth animation.transform: Another method is by using ascaletransform in which you just have to specify how much you want the image to be zoomed in like 2x, 3x etc. It can be used for zoom out too by passing the values less than one.widthandheight: This is the most common and old techniqiue in which we change the dimensions of the element directly via css on hover or click with transitions.widthandheight: Are zooming by 150% with thezoompropriety .
Take a look at the code to learn more about these techniques. If you know about more texhniques to create a zoom effect using CSS3, feel free to share it.