微信小程序按钮巧妙用法

网友投稿 508 2023-11-11

目录🍓button 按钮的基本使用🍉各种神奇的按钮

🍓button 按钮的基本使用

按钮组件

微信小程序按钮巧妙用法

功能比 HTML 中的 button 按钮丰富

通过 open-type 属性可以调用微信提供的各种功能(客服、转发、获取用户授权、获取用户信息等)

通过type属性指定按钮颜色类型

WXML:

?
1
2
3
4
<!-- 通过type属性指定按钮颜色类型 -->
<button>普通按钮</button>
<button type="primary">主色调</button>
<button type=warn">警告</button>

注:后期会对按钮添加事件,现在只是给大家演示一下按钮的类型

小尺寸按钮

plain镂空按钮

?
1
2
3
<button plain>普通按钮</button>
<button type="primary" plain>主色调</button>
<button type=warn" plain>警告</button>

🍉各种神奇的按钮

去这里找按钮的样式,然后复制:

Buttons - copy CSS & HTML! (uiverse.io)

WXML:(大家到时候需要改一改,因为我直接复制上面 按钮样式 里面的代码)

  Button

</button>

WXSS:

?
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
/* From www.lingdaima.com */
button {
position: relative;
padding: 19px 36px;
display: block;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
border-radius: 40px;
border: none;
}
button span {
position: relative;
color: #fff;
font-family: Arial;
letter-spacing: 8px;
z-index: 1;
}
button .liquid {
position: absolute;
top: -80px;
left: 0;
width: 100%;
height: 200px;
background: #4973ff;
box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
transition: .5s;
}
button .liquid::after,
button .liquid::before {
content: ;
width: 200%;
height: 200%;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -75%);
background: #fff;
}
button .liquid::before {
border-radius: 45%;
background: rgba(20, 20, 20, 1);
animation: animate 5s linear infinite;
}
button .liquid::after {
border-radius: 40%;
background: rgba(20, 20, 20, .5);
animation: animate 10s linear infinite;
}
button:hover .liquid {
top: -120px;
}
@keyframes animate {
0% {
transform: translate(-50%, -75%) rotate(0deg);
}
100% {
transform: translate(-50%, -75%) rotate(360deg);
}
}

WXML:

?
1
2
<button> Button
</button>

WXSS:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* From uiverse.io by @adamgiebl */
button {
background: #FBCA1F;
font-family: inherit;
padding: 0.6em 1.3em;
font-weight: 900;
font-size: 18px;
border: 3px solid black;
border-radius: 0.4em;
box-shadow: 0.1em 0.1em;
}
button:hover {
transform: translate(-0.05em, -0.05em);
box-shadow: 0.15em 0.15em;
}
button:active {
transform: translate(0.05em, 0.05em);
box-shadow: 0.05em 0.05em;
}

下期预告:image 组件的基本使用

您可能感兴趣的文章:微信小程序实现可拖动悬浮图标(包括按钮角标的实现)微信小程序将页面按钮悬浮固定在底部的实现代码微信小程序点击按钮动态切换input的disabled禁用/启用状态功能微信小程序中的video视频实现 自定义播放按钮、封面图、视频封面上文案微信小程序实现单个卡片左滑显示按钮并防止上下滑动干扰功能微信小程序批量监听输入框对按钮样式进行控制的实现代码微信小程序 多行文本显示...+显示更多按钮和收起更多按钮功能微信小程序按钮点击动画效果的实现操作按钮悬浮固定在微信小程序底部的实现代码详解微信小程序胶囊按钮返回|首页自定义导航栏功能微信小程序mpvue点击按钮获取button值的方法微信小程序单选radio及多选checkbox按钮用法示例微信小程序开发之点击按钮退出小程序的实现方法

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信公众平台开发入门教程(图文详解)
下一篇:微信小程序实现聊天室功能
相关文章

 发表评论

暂时没有评论,来抢沙发吧~