/**
* scrollBox 当html内容的高度和宽度大于手机屏幕大小时,需要进行左右上下滚动查看内容,可将html内容置于此容器实现滚动查看效果<br>:
* <strong>
* 页面需要导入的文件
* <ul>
* <li>cmp-scrollBox.js</li>
* <li>cmp-listView.js</li>
* <li>cmp-listView.css</li>
* </ul>
* </strong>
* @module scrollBox
* @subtitle 盒子滚动
*/
/**
* 盒滚动容器<br>
* 当html内容的高度和宽度大于手机屏幕大小时,需要进行左右上下滚动查看内容,可将html内容置于此容器实现滚动查看效果
* @class scrollBox
* @namespace cmp
* @constructor
* @param {String} container 列表容器标识,querySelector能定位的css选择器均可,比如:id、.class等,如:"#id"、".class"(必须符合以上两种形式的查询)
* @example
* ```
* <script>
* cmp.scrollBox("#container");
* </script>
* ```
*/