前端里 easy-ui icon 图片怎么增加?

前端里 easy-ui icon 图片怎么增加?,第1张

在jquery easy-ui目录下的themes/icon.css。这个css文件打开你就知道了。里面都是icon的css。你可以任意添加。一下是默认的icon css:

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

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

.icon-blank {

background: url('icons/blank.gif') no-repeat center center

}

.icon-add {

background: url('icons/edit_add.png') no-repeat center center

}

.icon-edit {

background: url('icons/pencil.png') no-repeat center center

}

一:需求

unity 和 android 的设置app icon 的方法太麻烦 需要简化 *** 作 最好拖入即可

二:实现

1.我们在在Plugins/Android 下面 创建res文件夹

2.我们模仿 unity 打包是自动产生的 icon 文件夹 复制到res目录下

3.创建好了后 我们把对应的icon 放入即可

ic_launcher 是方图标 ic_launcher_round 是圆图标

5我们打开Plugins/Android 下的LauncherManifest.xml文件

添加

android:icon="@mipmap/ic_launcher" 方图标

android:roundIcon="@mipmap/ic_launcher_round" 圆图标

6.然后用unity 进行打包 就会发现app icon 变了

基于vue框架,使用element-ui组件库写表单效果,需要添加字体小图标,效果如下:

1.只需要添加prefix-icon="iconfont icon-xxx"即可(头部插入)

//例如

<el-input

prefix-icon="iconfont icon-sousuo"

v-model="searchTableInfo"

placeholder="请输入姓名"

style="width:240px"

></el-input>

1

2

3

4

5

6

7

2.添加suffix-icon=“iconfont icon-xxx”(尾部添加)

//例如

<el-input

suffix-icon="iconfont icon-sousuo"

v-model="searchTableInfo"

placeholder="请输入姓名"

style="width:240px"

></el-input>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11405714.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存