yznote

砥砺前行

海报

Uniapp绘制海报

绘制海报 <view class="poster-test" :style="'height:'+(posterHeight+20)+'px;'"> <canvas canvas-id="poster-qr" id='sss' :style="'width:'+posterWidth+'px;height:'+posterHeight+'px;'">&l...

TP5加Apache或者Nginx

本地开发MAMP配置

MAMP配置 版本:6.8.1 数据库 数据库:MySQL Apache配置【推荐】 伪静态 放到Additional parameters for <Directory> directive:输入框下 <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine o...

GitHub-SSH

Connection closed by remote host

Connection closed 报错如下: kex_exchange_identification: Connection closed by remote host Connection closed by 127.0.0.1 port 7890 fatal: Could not read from remote repository. Please make sure you ...

CSS画三角符号

CSS画三角符号

画三角 向上 .item-arrow-up { width: 0; height: 0; border: 15px solid transparent; border-bottom: 20px solid rgba(58, 106, 255, 0.40); } 向下 .item-arrow-down { width: 0; heigh...

Uniapp更换字体

Uniapp更换字体

跟随系统 在App.vue设置body如下: body { font-family: Helvetica Neue, Helvetica, sans-serif; } 设置自定义字体 下载字体库到本地 远程字体,H5生效,app不生效 在App.vue中声明字体 @font-face { font-family: 'pht55'; s...

Mac新版本软件安装

Mac新版本软件安装

Mac OS Catalina之后 已损坏的解决方案 sudo xattr -d com.apple.quarantine /Applications/xxxx.app 报错:Either you did not provide the necessary admin credentials or the MAMP PRO package could not be initialize...

获取jks的SHA1

获取jks的SHA1

keytool -list -v -keystore yunbao.jks 如果报错如下:请前往下载Java The operation couldn’t be completed. Unable to locate a Java Runtime. Please visit http://www.java.com for information on installing Java....

JS生成唯一标识

JS生成唯一标识

方式一 // 添加唯一编码 function fn_Guid() { function s4() { return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1); } return (s4() +s4() +"-" +s4() +"-" +...

一套代码关联多个仓库

一套代码同时提交到多个仓库

创建文件夹 cd进入新建的文件夹 git init 添加第一个仓库地址 git remote add 名称(origin) 地址1 添加第二个仓库地址 git remote set-url --add 名称(origin) 地址2 罗列关联的仓库地址 git remote -...

大小限制

php.ini

php上传大小限制 服务器根目录/usr/local/php/etc/php.ini 里 post_max_size 重启: systemctl restart php-fpm 日志 // 1.创建文件夹【cd到目标目录 ==> mkdir rk】 ~/Desktop/ybkj/wwwybkjcomlocal/bendi.yunbaokj.com/data/runtime % ...

图片自适应

图片自适应css

图片自适应 <div class="img-box"> <image src="@static/imgs/600x200.jpg"> </image> </div> <div class="img-box"> <image src="@static/imgs/500x200.jpg"> </im...

命令行命令

命令行

清除无效替身 sudo find / -type l -exec test ! -e {} \; -print -delete

Git仓库瘦身

Git仓库瘦身

查询大文件 git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -10 | awk '{print$1}')" rev-list:命令用来列出Git仓库中的提交,我们用它来列出所有提交中涉及的文件名及其ID.该命令可以指定只显...

SSH

SSH 命令

常用参数 -D 删除ssh-agent中的所有密钥 -d 从ssh-agent中的删除密钥 -l 显示ssh-agent中的密钥 -L 显示ssh-agent中的公钥 -X 对ssh-agent进行解锁 -x 对ssh-agent进行加锁 把专用密钥添加到ssh-agent的高速缓存中 ssh-add /key_path 查看...

OpenCC

OpenCC

安装 brew install opencc 使用命令【推荐方式三】 方式一:生成新文件 for file in *; do opencc -c s2t -i "$file" -o "$file-output"; done 方式二:生成新文件 find . -type f -name "*.vue" -exec sh -c 'opencc -c s2hk.json -i "$...

组件样式和CSS

样式传值

class1 多个class写法 template中 <template> <div id="app"> <div :class="{'class-1':show1,'class-2':show2}"></div> </div> </template> js的data中 <script&...

新闻通知

翻滚

调用 noticeList数据格式为对象->title可通过theKey配置新的key ``` <rk-notice :show-icon="false" :show-more="false" :list="noticeList" @clickItem="clickItem"></rk-notice> #### 组件 <view ...

侧滑删除

侧滑删除

调用方式 说明:listData为数据源 <view class="list-item skeleton-rect" v-for="(item,index) in listData" :key="index"> <rk-movable :options="options" :index="index" @content-click="goDetail(it...

vmodel自定义

数据双向绑定

注意!!! 微信小程序内只能用{prop:'value',event:'input'} github <template> <!-- 自定义组件中使用v-mode指令 --> <input class="input" @input="changeInput" :value="rkValue" /> </template>...

Html-Js语法

Html-Js语法

一个简单的hmtl <!DOCTYPE html> <html lang=zh-CN> <head> <meta charset=utf-8> <meta http-equiv=X-UA-Compatible content="IE=edge"> <title>三...