This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--分页模块--> | |
| <div class="turnPageBottom clearfix"> | |
| <span class="pageNum">每页显示</span> | |
| <select> | |
| <option value="10">10</option> | |
| <option value="30" selected="selected">30</option> | |
| <option value="50">50</option> | |
| </select> | |
| <a href="javascript:;" class="page_prev">上一页</a> | |
| <a href="javascript:;" class="page_cur">1</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 动画 | |
| * @public | |
| * @class Atom.animation.Actor | |
| * @description 混合类型,凡是拥有Atom.animation.Actor混合类型的类都有使用动画的能力 | |
| */ | |
| Atom.define('Atom.animation.Actor', { | |
| initConfig : function(){ |