Use CSS to make the picture produce frosted glass effect

Source: Internet
Author: User

The picture effect of frosted glass makes its display more beautiful, the user experience is better, so it is widely used in mobile computer terminal.

such as the iOS system:

  

So now let's take a look at the implementation of the effect of frosted glass:

First, this is the main content of HTML:

  

 <  div  class  = "Container"     >  <  div  class  = "Mat_class"  ></ div     >  <  p  class  = "word"  >  SHOW time</ p  >  </ div  >  

Here container is used to place text

Mat_class is a container used to form the effect of frosted glass;

Then in the key CSS section:

. container{            width:960px;            height:600px;            Background-image:url (img/img.jpg);        }        . mat_class{            position:relative;            top:200px;            width:960px;            height:200px;            Filter:blur (5px);        }        . word{            Color:white;            position:relative;            left:240px;            font-size:80px;        }            

The code is simple, and I'll show you where to look.

Frosted Glass realizes the soul in this sentence:

Background-image:inherit;

Background-image is not inherited by default, but if you set the inherit, you properly adjust the length of the inner container, and then what do you feel now?

Look at the world from the camera feeling!

Attachment effect:

Original:

Success becomes behind:

Above

Use CSS to make the picture produce frosted glass effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.