Fade out after div content has been shown using CSS

前端 未结 3 546
有刺的猬
有刺的猬 2021-01-18 02:50

I\'m trying to show a notification on button click. The button click actually checks for email validation. I know to show a div with content with the error message. However,

3条回答
  •  情话喂你
    2021-01-18 03:51

    cross browser hack (instead of using css3 animation keyframes):

    transition-timing-function: cubic-bezier(1,1,1.0,0);}
    -webkit-transition-timing-function: cubic-bezier(1,1,1.0,0);
    

    http://www.w3schools.com/cssref/css3_pr_transition-timing-function.asp

提交回复
热议问题