0.1.0 • Published 8 years ago

amazeui-rating v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Amaze UI Rating

使用说明

  1. 获取 Amaze UI Rating
  1. 引入 Rating 插件(dist 目录下的 JS):

    <script src="path/to/jquery.min.js"></script>
    <script src="path/to/amazeui.rating.min.js"></script>
  2. 初始化 Rating:

    Amaze UI Rating 也支持Data API。

    $(function() {
        $('#rating').rating({
          icons: ['star-o', 'star'],
          scale: 5,
          score: 2
        });
    });