一、使用微信小程序
1 登录小红书官网,点击右上角的“小程序”按钮;
2 选择“新建小程序”,输入小程序名称和描述;
3 上传小程序图标和首页截图;
4 点击“立即发布”,小程序就会悬浮在微信上;
5 用户可以搜索“小红书”,找到你的小程序,即可查看到你的小程序。
二、使用微信营销策略
1 在微信公众号内创建一个小程序卡片,发布小程序的介绍及营销文章;
2 鼓励用户分享小程序,让更多人可以了解小红书;
3 利用微信投放广告,把小程序推向更多人;
4 开展各种关于小程序的活动,吸引更多人来尝试使用小红书;
5 利用微信社交网络上的各种推广渠道,将小程序推广到更多的社交媒体上,如新浪微博、微信朋友圈等。
其实取消小程序悬浮,非常的简单,如图所示:
1小程序悬浮在微信页面中
2点击一下悬浮的小程序图标,就会出现一个×,这个×就是关闭的按钮,点一下,就可以取消悬浮小程序了。
微信小程序 ,列表头滚动的过程中 ,view 悬浮在顶部 ,如何实现这样的一个效果呢??
//indexjs
//获取应用实例
const app = getApp()
Page({
data: {
testData: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
testData2: [1, 2, 3, 4, 5, 10],
//是否显示 悬停布局
isshow:false,
//悬浮布局的数据
toptexxt:""
},
onLoad: function () {
},
/
页面加载完成
/
onReady: function () {
},
/
页面滚动监听
/
onPageScroll: function (e) {
//consolelog(e)
let that = this
let query = wxcreateSelectorQuery()
queryselectAll("section-cell")boundingClientRect(function (res) {
consolelog(res)
let size =reslength;
let position = -1;
let topshow = -1000;//根据需求设置大小
let i=0;
//根据 top 的 大小 获取 当前距离顶部最近的view 的下标, 负数最大值 或者是0,
for(i=0;i<size;i++){0
let top = res[i]top;
if(top<=0 && top>topshow ){
topshow = top;
position=i;
}
}
consolelog("当前坐标是 position = "+position)
let isshow =false;
if (res[0]top<0){
if(position==-1) position=0;
isshow = true;
}
thatsetData({
isshow: isshow,
toptexxt: isshowthatdatatestData[position]:""
})
})exec()
},
})
<!--indexwxml-->
<view>
<view class='header'>这里是header</view>
<view hidden='{{!isshow}}'>
<view class= "section-header section-fixed" >这是section-header {{toptexxt}}</view>
</view>
<view wx:for="{{testData}}" wx:key="{{testData}}">
<view>
<view class='section-cell' id='top{{item}}'>{{item}} </view>
<view wx:for="{{testData2}}" wx:key="{{testData2}}">
<view class='section-cell2' id='child{{item}}'>{{item}}</view>
</view>
</view>
</view>
</view>
/indexwxss/
section-placeholder {
background-color: white;
}
section-fixed {
position: fixed;
top: 0;
}
header {
height: 300rpx;
width: 750rpx;
background-color: bisque;
}
section-header {
height: 80rpx;
width: 750rpx;
background-color: rebeccapurple;
}
section-cell {
width: 750rpx;
height:80rpx;
background-color: gold;
margin-top: 2rpx;
}
section-cell2 {
height: 50rpx;
width: 750rpx;
background-color: darkred;
}
效果
关闭微信即可。微信小程序开启悬浮窗后不关闭声音是由于未关闭微信导致的,只需要关闭微信即可。微信(WeChat)是腾讯公司于2011年1月21日推出的一个为智能终端提供即时通讯服务的免费应用程序。
以上就是关于小红书怎样悬浮在微信上全部的内容,包括:小红书怎样悬浮在微信上、微信怎么把小程序悬浮取消、微信小程序 ,列表头滚动的过程中 view 悬浮在顶部等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)