微信小程序 - toptip效果

[复制链接]
查看2879 | 回复9 | 2018-2-11 22:20:53 | 显示全部楼层 |阅读模式
[color=black]在Page顶部下滑一个提示条 , 代码见 /mixins/UIComponent.js ,其中的self 可以认为是微信小程序的Page对象

效果: 默认2秒展示,上移动画隐藏

微信小程序 - toptip效果

微信小程序 - toptip效果
[b]88301-20171128175241612-573952559.png[/b] [i](141.9 KB, 下载次数: 0)[/i]
下载附件  [url=" url=]保存到相册[/url]
[align=left]2017-11-29 10:09 上传[/align]




[list=1]
[*]/**
[*]     * 展示顶部 tip , 多次快速调用,会覆盖前次展示
[*]     */
[*]UIComponent.showToptip = function (opt = {}) {
[*]  var self = this;
[*]  if (self.uiComponent_topTip_timer) { //如果之前有timer,那么取消后重新创建
[*]    clearTimeout(self.uiComponent_topTip_timer);
[*]  }
[*]  if (typeof opt == "string") {
[*]    opt = {
[*]      content: opt
[*]    }
[*]  }
[*]  //默认参数,也是外部参考的传参
[*]  var defaultOptions = {
[*]    show: false, //是否显示,默认不显示
[*]    style: "", //外部传入的自定义样式,比如字体,背景色
[*]    content: "操作成功",  //默认的内容
[*]    duration: 2000  //显示延迟几秒
[*]  };
[*]  let app = getApp();
[*]  opt = app.util.extend(defaultOptions, opt);
[*]  self.setData({
[*]    'uiComponent.toptip.show': true,
[*]    'uiComponent.toptip.style': opt.style,
[*]    "uiComponent.toptip.content": opt.content
[*]  });
[*]  self.uiComponent_topTip_timer = setTimeout(() => {
[*]    self.setData({
[*]      'uiComponent.toptip.show': false
[*]    });
[*]  }, opt.duration);
[*]}
[/list]


[list=1]
[*]<view class="uiComponent uiComponent_toptip uiComponent_toptip_{{uiComponent.toptip.show &&'active'}}"
[*]  style="{{uiComponent.toptip.style}}"
[*]
[*]  >{{uiComponent.toptip.content}} </view>
[/list]


[list=1]
[*].uiComponent {
[*]  z-index: 110;
[*]}
[*]/* toptip 顶部提示条效果 */
[*].uiComponent_toptip {
[*]  width: 100%;
[*]  display: block;
[*]  top:-50px;
[*]  position: fixed;  text-align: center;
[*]  line-height: 2.3;
[*]  font-size: 30rpx;
[*]  transition: all .2s linear ;
[*]}
[*]
[*].uiComponent_toptip_active {
[*]  top:0;
[*]  transition: all .3s linear ;
[*]  min-height: 32px;
[*]  color: #fff;
[*]  background-color: rgba(0,0,0,.8);
[*]}
[/list]


[/color]
回复

使用道具 举报

静254 | 2020-10-30 21:16:57 | 显示全部楼层
谢谢楼主分享的资源,爱了~~~
回复

使用道具 举报

公务员老虫叭 | 2020-11-21 19:38:22 | 显示全部楼层
谢谢楼主分享的资源,爱了~~~
回复

使用道具 举报

紫色214 | 2020-12-16 10:51:37 | 显示全部楼层
站长真良心,这么大的资源站都是免费下载
回复

使用道具 举报

天寿保健护理彰 | 2021-5-17 19:28:21 | 显示全部楼层
资源太多了,准备办个会员
回复

使用道具 举报

去火星三小时自 | 2021-6-22 03:41:14 | 显示全部楼层
站长真良心,这么大的资源站都是免费下载
回复

使用道具 举报

叶505 | 2021-11-23 05:08:17 | 显示全部楼层
找了很多地方都不能下载,终于在悟空源码找到了
回复

使用道具 举报

您脱风云错 | 2022-6-3 09:46:47 | 显示全部楼层
我是来白嫖悟空源码的积分的!!!!!
回复

使用道具 举报

123457782 | 2022-7-22 01:07:45 | 显示全部楼层
感谢悟空源码分享精品资源!
回复

使用道具 举报

薛建朝 | 2023-11-8 08:14:46 | 显示全部楼层
厉害了,悟空源码资源多教程多!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则