1748
直接在wxss粘贴::-webkit-scrollbar{
display: none;
opacity: 0;
width: 0;
height: 0;
color: transparent!important;
}
0
0 1534天前
2723
wxml<view class='container'>
<view class='fix-view' id='fix-view' animation='{{menuAnim}}'>
<!-- 菜单template -->
<template is='tabBar' data='{{...tab_config}}' />
</view>
<view class='story-list'>
<view wx:for="{{storyList}}" wx:key="{{item._id}}">
<!-- 列表item, 自行填充 -->
</view>
</view>
</view>wxss.fix-view {
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 150;
}
.story-list {
padding-top: 40px;
}js部分datascrollTop:null,
showMenu:true,
menuAnim:null,
menuHeight:nullonLoadlet that = this;
wx.createSelectorQuery().select('#fix-view').boundingClientRect(function(rect) {
//menuHeight = rect.bottom;
that.setData({
menuHeight: rect.bottom
})
}).exec()onPageScrollonPageScroll: function(event) {
let scroll = event.scrollTop; //当前的距离顶部的高度
let scrollTop = this.data.scrollTop; //记录的距离顶部的高度
let height = this.data.menuHeight; //菜单的高度
let show = this.data.showMenu; //菜单的显示状态
//是否超过开始隐藏的高度
if (scroll > height) {
if ((scroll < scrollTop) == show) { //超过高度时的上滑或下滑状态一致时
this.setData({
scrollTop: scroll
})
} else { //超过高度时的上滑显示和下滑隐藏
let anim = wx.createAnimation({
timingFunction: 'ease-in-out',
duration: 200,
delay: 0
})
anim.translateY(scroll < scrollTop ? 0 : -height).step();
this.setData({
scrollTop: scroll,
showMenu: scroll < scrollTop,
menuAnim: anim.export()
})
}
} else {
//小于menuHeight并且隐藏时执行显示的动画
if (!show) {
let anim = wx.createAnimation({
timingFunction: 'ease-in-out',
duration: 200,
delay: 0
})
anim.translateY(0).step();
this.setData({
scrollTop: scroll,
showMenu: true,
menuAnim: anim.export()
})
} else {
this.setData({
scrollTop: scroll
})
}
}
}来源:简书:beatzcs
0
0 1541天前
10115
光标变黑块是因为输入方式变成了改写方式,INSERT可以切换
插入/改写模式。
插入模式:把输入的代码插到光标处,后面的向后移动。
改写模式:是把后面的字替换新输入的。编辑代码一般是用插入模式。
大多笔记本上是 INS(在f12)
键(在键盘上),外接键盘一般是右上区域的 Insert 键,Mac
电脑是 fn + Enter 组合键切换输入模式。
8
0 1558天前
1955
效果图wxss/*首页跑马灯效果*/
@keyframes around {
from {
margin-left: 100%;
}
to {
/* var接受传入的变量 */
margin-left: var(--marqueeWidth--);
}
}
.marquee_container{
background-color: #fff;
height: 50rpx;
line-height: 44rpx;
position: relative;
width: 100%;
margin-top:0rpx;
}
.marquee_container:hover{
/* 不起作用 */
animation-play-state: paused;
}
.marquee_text{
color:#737373;
font-size: 28rpx;
display: inline-block;
white-space: nowrap;
animation-name: around;
animation-duration: 10s; /*过渡时间*/
animation-iteration-count: infinite;
animation-timing-function:linear;
}
wxml <!-- 公告 -->
<view class="marquee_container" style="--marqueeWidth--:-12em">
<view class="marquee_text">欢迎使用爱宅域影视小程序,祝您观看愉快。</view>
</view>
<!--跑马灯-->缺点,内容过长无法显示完整来源:scdn
2
0 1562天前
1969
今天是边学习实战开发微信小程序的第五天,从08.03-08.09,有点久,终于也有一款属于自己编写的小程序啦,后台程序为苹果cms还有,写的代码顺序真的非常乱目前没有用户登陆功能可以说是半成品了,主要也就三个页面首页,搜索,视频播放页我把影视网页端给关了,现在只能通过小程序来观看,免费无广告,快来体验一下吧完全免费,可微信搜索小程序:爱宅域影视进行体验现在视频播放可能会有点卡,特别的高峰期,后面会进行换源,大家和我一起愉快的使用吧来看下这次1.1版本的截图吧,修复了推荐关键词点击无反应
4
0 1564天前
1586
在JS文件中,直接加上下面代码即可://缓冲提醒,来源百度 wx.showToast({
title: '加载中',
icon: 'loading',
duration: 400
})
0
0 1568天前
1684
比如需要分割的内容为:你好$wwww.com#你好1$eeee.com#你好2$rrr.com$$$你好$wwww.com#你好1$eeee.com#你好2$rrr.com
20200823更新 <script>
var arr=new Array();
var arrr=new Array(0);
var a="你好$wwww.com#你好1$eeee.com#你好2$rrr.com$$$你好$wwww1.com#你好1$eeee1.com#你好2$rrr1.com";
var b=a.split("$$$");
// console.log(b);
for(var i=0;i<b.length;i++){
console.log("第"+(i+1)+"层");
// arr[i]=b[i];
var x=b[i].split("#");
// console.log(x);
arr[i]=x;
arrr[i]=arr[i];//赋值
console.log(arr[i]);
for(var j=0;j<arr[i].length;j++){
// arrr[j]=arr[i][j].split("$");
arrr[i][j]=arr[i][j].split("$");
// console.log(arr);
}
}
console.log(arr)
console.log(arrr);
</script>
4
0 1568天前
1564
在安好eclipse中文包后在eclipse的快捷方式中右键属性选中目标 目标:改为英文E:\eclipse\eclipse.exe -nl "en"改为中文d:\eclipse\eclipse.exe -nl zh
0
0 1608天前
2023
在键盘上按下组合键【Win】+【R】,调出运行窗口。在窗口中输入“regedit”,点击确定,打开注册表管理界面。在注册表左侧目录栏中找到如下位置:“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager”然后在右侧选择删除“PendingFileRenameOperations”项即可。
2
0 1626天前
2281
把sd卡烧录好系统,然后打开boot分区,在boot下新建也就是树莓派的 /boot 目录下新建 wpa_supplicant.conf 文件,按照下面的参考格式填入内容并保存 wpa_supplicant.conf 文件country=CN
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="WiFi-A"
psk="12345678"
key_mgmt=WPA-PSK
priority=1
}
network={
ssid="WiFi-B"
psk="12345678"
key_mgmt=WPA-PSK
priority=2
scan_ssid=1
}说明以及不同安全性的 WiFi 配置示例:#ssid:网络的ssid#psk:密码#priority:连接优先级,数字越大优先级越高(不可以是负数)#scan_ssid:连接隐藏WiFi时需要指定该值为1如果你的 WiFi 没有密码network={
ssid="你的无线网络名称(ssid)"
key_mgmt=NONE
}如果WiFi 使用WEP加密network={
ssid="你的无线网络名称(ssid)"
key_mgmt=NONE
wep_key0="你的wifi密码"
}如果你的 WiFi 使用WPA/WPA2加密network={
ssid="你的无线网络名称(ssid)"
key_mgmt=WPA-PSK
psk="你的wifi密码"
}树莓派初始化账户:pi密码:raspberryssh连接成功后改配置,我用的是xshell输入sudo raspi-config回车1改密码启用vnc第五行接口选项找到vnc改分辨率找到高级选项7A5那个,选择到合适的分辨率最后出去设置静态ipsudo nano /etc/dhcpcd.conf打开这个文件添加指定的IP地址和路由器interface wlan0static ip_address=10.0.0.9/24static routers=10.0.0.1保存退出重启树莓派sudo reboot
1
0 1631天前