CSS3 Control multiple animation effects

Source: Internet
Author: User

See today a similar to the door and window switch effect. Think of using CSS3 to achieve, of course, JS can have to be able to achieve. I mainly want to experience the magic of a CSS3.

0102


01 Picture Zoom Out, zoom out to see, 02 image magnified effect appears.

Implementation principle: With an outer div to trigger the hover effect, inside a set of two picture Div,

Figure I and figure II, respectively

The transform and transition effects of CSS3 are mainly used, and the focus is on the Transition-delay delay attribute.

Specific code

HTML--------------------------

<div id= "Out" >      <div id= "in1" > </div>      <div id= " In2 "> </div>    </div>
CSS Section---------------------------------------

#out {width:321px; height:339px; overflow:hidden; position:relative;}    #in1 {float:left;}    #in2 {display:block; Float:left;transform:scale (0,1);}    #out: hover #in1 {transform:scale (0,1); Transition:all 0.5s linear;}    #out: hover #in2 {transition:all 0.3s linear 0.35s;transform:scale ();    Display:block; Float:left; Position:absolute; top:0px; left:0px;}




Related Article

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: [email protected] 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.