CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress
CSS Tutorials

Overview

The opacity of an element can be used to create effects such as elements fading in our out on hover, or changing opacity as a visual cue to the user.

The transparency can be set, where 1 is opaque and 0 is transparent. Any value in between will give partial transparency. The following is 50% transparent.

				
					div {
    background: red;
    opacity: 0.5;
}
				
			
This text is actually pure black.

Hover Effect

Opacity is most often used as a hover effect, such as changing the opacity of an image or image link on hover.

In the following example, when the user hovers the cursor over the image element, the image will show at a lower opacity. This is often used as a cue that the image can be clicked to show a larger version.

				
					img:hover {
    opacity 0.5;
}
				
			
IMAGE

To make the transition between completely opaque and partially opaque, the transition property can be used. By setting a transition (on the element without the hover), the following will change the opacity over 0.4 seconds making it more pleasing to the eye.

				
					img {
    transition: opacity 0.4s;
}
img:hover {
    opacity 0.5;
}
				
			
IMAGE

Properties

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

CSS
HTML
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.