Home > Web Front-end > HTML Tutorial > 用React加CSS3实现微信拆红包动画_html/css_WEB-ITnose

用React加CSS3实现微信拆红包动画_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:21:53
Original
1402 people have browsed it

微信红包曾经引爆过一系列的营销热潮,相信大家对于这种红包形式,这里本着娱乐至上的精神用React简单地实现了拆红包的动画效果,供大家一起交流学习

用CSS3绘制红包

.redpack { height: 450px; background: #A5423A; width: 300px; left: 0; top: 0; border-radius: 10px; margin: 0 auto;}.topcontent { height: 300px; border: 1px solid #BD503A; background-color: #BD503A; border-radius: 10px 10px 50% 50% / 10px 10px 15% 15%; box-shadow: 0px 4px 0px -1px rgba(0,0,0,0.2);}#redpack-open { width: 100px; height: 100px; border: 1px solid #FFA73A; background-color: #FFA73A; border-radius: 50%; color: #fff; font-size: 20px; display: inline-block; margin-top: -50px; box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);}
Copy after login

<div class='redpack'>  <!-- 红包的顶部盖子 -->  <div class="topcontent"></div>  <!-- 拆红包的按钮 -->  <div id="redpack-open"></div></div>
Copy after login

在线Demo演示: https://jsbin.com/sawaxid/edit?html,css,output

JS Bin on jsbin.com

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template