logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

uniapp中字体加粗问题

在小米手机中,font-size:600;是没有什么效果的,但是在苹果或者华为就生效,所以必须统一成font-size:700;样式才能统一

#html#css3#css
uniapp实现小红书登陆页面背景图无限滚动效果

<template><view class="uni-navbar"><view class="img"><image@load="loads" :style="'height:'+height+'rpx;top:'+top+'rpx'" src="../../../static/login/1.png" mode="" /><image:st

#html#javascript
uniapp解决在nvue不能获取节点信息得问题

// #ifdef APP-NVUEconst dom = weex.requireModule('dom')// #endifconst result = dom.getComponentRect(this.$refs.examplebody, option => {console.log('getComponentRect:', option)this.$emit("getNavTab"

#javascript
uniapp地图实现点击回到当前位置

<map :latitude="latitude" id="around-food-map":longitude="longitude" />onControltap(control) {uni.createMapContext("around-food-map", this).moveToLocation({longitude: this.longitude,latitude: th

#html
uniapp在返回上一页时提示信息

onBackPress(e) {if (e.from == "backbutton") {uni.showModal({title: '提示',content: '离开本页面将不会保存您输入的任何数据',success: (res) => {if (res.confirm) {uni.navigateBack({delta: 1});}}});return true

#html#html5
node使用ffmpeg拼接音频

node使用ffmpeg拼接音频

#javascript
vue生成的时间戳在ios上显示NAN的问题

解决vue生成的时间戳在ios上显示NAN的问题let issafariBrowser = /Safari/.test(navigator.userAgent) && !/Chrome/.test(navigator.userAgent); //判断当前是否是ios的Safari浏览器if (issafariBrowser) {let start_time = item.start

#ios
uniapp实现页面滑动

uniapp实现页面滑动整体代码<template><view><scoll :list="scoll" @getIndex="getIndex1" :activeIndex.sync="activeIndex" class="padding" :index="index"ref="scoll" /><swiper :style="{height:comH

解决uniapp得scoll-view下拉刷新不复位得问题

html代码<scroll-viewscroll-y="true"style="height: 100%;"@scrolltolower="getList"scroll-anchoring@refresherrefresh="refresherrefresh"@refresherrestore="refresherrestore"@refresherabort="refresherabort

到底了