uni-app中使用锚点定位

之前有一个项目,是需要点击图片,跳转到相应板块。我一想,这不是锚点吗,具体使用如下

 
        百日冲刺
        通关必备
        限时秒杀
        精品直播
 

   ScrollPosition(part){
	let that = this;
	uni.createSelectorQuery().select("."+part).boundingClientRect(function(res){//定位到你要的class的位置
		console.log("标签获取====>",typeof(res.top))
		uni.pageScrollTo({
			scrollTop:res.top,
			duration: 300
		});
	}).exec()
},

  可以再加一个点击回到顶部



  这个回到顶部的图标需要固定定位

.toTop{
    position: fixed;
    z-index: 2;
    left: 40rpx;
    bottom: 40vw;
    width: 100rpx;
    height:100rpx;
}

  具体方法

   topBack(){
	uni.pageScrollTo({
	  scrollTop:0,   // 滚动到页面的目标位置  这个是滚动到顶部, 0 
	   duration:300  // 滚动动画的时长
	})
   },

你可能感兴趣的:(uni-app,前端,javascript,开发语言,ecmascript)