“离娄之明,公输子之巧,不以规矩,不能成方圆。” -- 战国·邹·孟轲《孟子·离娄上》
页面框架的样式命名基于对内容模块的基本划分方式,活动页面也不例外。
为了制定统一的编码规范,我们需要对活动页面的基本框架结构形成一致的理解和认识。
1.活动主体内容 (.act_wrapper)
|-- 2.主体内容内嵌层,可选 (.act_wrapper_inner)
|-- |-- 3.1 活动通栏 (.act_content,可看成h5里面的article)
|-- |-- |-- 4.活动楼层 (.act_sec,可看成h5里面的section)
|-- |-- |-- |-- 5.1 普通内容碎片 (.act_flag)
|-- |-- |-- |-- |-- 6.1 icon组件 (.act_icon)
|-- |-- |-- |-- |-- 6.2 按钮组件 (.act_btn)
|-- |-- |-- |-- 5.2 背景链接热区 (.act_hotlnk)
|-- |-- |-- |-- 5.3 其他内容碎片 (.act_xxx)
|-- |-- 3.2 活动背景 (.act_bgs)
页面基本框架代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <div class="act_wrapper"> <div class="act_wrapper_inner">
<div class="act_content act_contentA">
<div class="act_sec act_sec1">
<div class="act_flag s1_flag1">
<a href="#" class="act_btn abtn_xxx"><span></span></a>
<i class="act_icon aico_xxx"><span></span></i>
</div>
<div class="act_xxx"></div>
</div>
</div>
<div class="act_content act_contentB"></div>
<div class="act_bgs"> <div class="act_bg act_bg1"></div> <div class="act_bg act_bg{n}"></div> </div>
</div> </div>
|
Part2预告
活动重构规范Part2-活动页面模板介绍