js css3制作简洁的电子结算单据折叠展开,商品结算列表信息效果。适用于电子商城结算清单页面。
使用方法
1、head引入css文件
<link rel="stylesheet" href="css/style.css">2、body引入部分
<article class="receipt"> <section class="receipt__half upper"> <p>结算单据</p> <h1>59.98元</h1> <p class="sm">2019/06/04 - 09:47</p> <div class="receipt__content"> <table> <tbody> <tr> <td>褪色牛仔裤</td> <td>39.99元</td> </tr> <tr> <td>无袖衬衫</td> <td>19.99元</td> </tr> </tbody> </table> </div> </section> <section class="receipt__half lower"> <button>查看详情</button> </section> </article> <script src="js/script.js"></script>