当前位置:   article > 正文

Angular2图标选择器——jQuery asIconPicker_jquery 图标icon选择器插件

jquery 图标icon选择器插件

图标选择器插件——jQuery asIconPicker

参考:http://www.jqueryscript.net/other/Feature-rich-Font-Icon-Picker-Plugin-For-jQuery-asIconPicker.html
https://npm.taobao.org/package/jquery-asIconPicker

1.需要先下载jquery-asIconPicker,jquery-asTooltip,jquery-asTooltip,从Npm安装(JQuery也必须要下载)

npm install jquery-asIconPicker --save
npm install jquery-asTooltip --save
npm install jquery-asTooltip --save
  • 1
  • 2
  • 3

2.在.angular-cli.json中导入相关js和css

"styles": [
        "styles.css",
        "../node_modules/jquery-asIconPicker/dist/css/asIconPicker.min.css",
        "../node_modules/font-awesome/css/font-awesome.min.css"
      ],
      "scripts": [
        "../node_modules/jquery/dist/jquery.min.js",
        "../node_modules/jquery-asTooltip/dist/jquery-asTooltip.min.js",
        "../node_modules/jquery-asScrollbar/dist/jquery-asScrollbar.min.js",
        "../node_modules/jquery-asIconPicker/dist/jquery-asIconPicker.min.js"
      ]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

第一次做,因为一些问题,我需要在index.html中加入font-awesome的CSS才可以正常显示

  <link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
  • 1

3.在app.component.html中创建一个包含预定义字体图标的常规选择框

    <select id="default" name="default" class="default" >
      <option>fa-user</option>
      <option>fa-search</option>
      <option>fa-caret-right</option>
      <option>fa-star</option>
      <option>fa-times</option>
      <option>fa-refresh</option>
      <option>fa-rocket</option>
      <option>fa-eye</option>
      <option>fa-tag</option>
      <option>fa-bookmark</option>
      <option>fa-heart</option>
      <option>fa-adn</option>
      <option>fa-cloud-upload</option>
      <option>fa-phone-square</option>
      <option>fa-cog</option>
      <option>fa-wrench</option>
      <option>fa-volume-down</option>
      <option>fa-caret-down</option>
      <option>fa-caret-up</option>
      <option>fa-caret-left</option>
      <option>fa-thumbs-up</option>
    </select>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

4.在app.component.ts的初始化方法ngOnInit()中初始化并调用元素上的插件

import '../../node_modules/jquery/dist/jquery.min.js';
declare var jQuery: any;
import '../../node_modules/jquery-asTooltip/dist/jquery-asTooltip.min.js';
import '../../node_modules/jquery-asScrollbar/dist/jquery-asScrollbar.min.js';
import '../../node_modules/jquery-asIconPicker/dist/jquery-asIconPicker.min.js';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']

})
export class AppComponent {
ngOnInit() {
      jQuery('.default').asIconPicker();
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

至此基本就已经完成了,成果如下图:
这里写图片描述

5.jQuery asIconPicker方法
get()
获取图标选择。

var icon = $().asIconPicker('get');
  • 1

set()
设置图标。

$().asIconPicker('set', 'search');
VAL()
  • 1
  • 2

获取或设置图标。

// get the icon
var icon = $().asIconPicker('val'); 

// set the icon
$().asIconPicker('set', 'search');
  • 1
  • 2
  • 3
  • 4
  • 5

clear()
清除该值。

$().asIconPicker('clear');
  • 1

enable()
启用图标选择器功能。

$().asIconPicker('enable');
  • 1

disable()
禁用图标选择器功能。

$().asIconPicker('disable');
  • 1

destroy()
破坏图标选择器实例。

$().asIconPicker('destroy');
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/402317
推荐阅读
相关标签
  

闽ICP备14008679号