-
The "Notices" shortcode enables you to call out pieces of information - sidebars, warnings, tips, etc. To create a notice on a page, you can use the notice shortcode. You use the notice shortcode, with the first parameter being one of note, info, tip, and warning. Then add a title for your note in quotes as …
Read More -
1git rebase -i HEAD~2
Read More -
Vue2 中容易被忽略的两个重要的 API 介绍 Vue2 中封装 1<template> 2 <a-button 3 icon="sync" 4 title="刷新" 5 v-bind="$attrs" 6 v-on="$listeners" 7 /> 8</template> 9 10<script> 11/** 12* 和 a-button 外观、行为完全一致 13* 区别是预设 icon 和 title 属性 14*/ 15export default { 16 inheritAttrs: false, 17} …
Read More -
监听事件bindready,获取高度有时不准确 #195 对应的源码部分 判断 ready 的标准是每 350ms 检查一次高度,两次高度不变化就认为加载完毕,然后返回大小,处理的地方在 这里 这个处理方式确实可能在某些情况下不准确,如果 350ms 总高度不变化就会触发,但这个很难权衡,因为要确保一定准确的话可能这个时间间隔要更长或者多次不变化后再触发,这样的话触发的就会很慢,某些情况下会带来问题(比如进入页面后等待图片加载完要跳转到某个锚点,等待时间过长就会影响体验),所以这里如果要求很高的话可能需要自行调整一下 ps:对于这个问题最准确的获取时机应该是所有图片都触发 load 事件的时候,但由于开启懒加载后,一些图 …
Read More -
参考文章: git subtree教程 1git subtree push --prefix=content/posts post master 目前主要使用这三个命令即可,分别是添加、更新和推送远程。 1git subtree add --prefix=<prefix> <repository> <ref> 2git subtree pull --prefix=<prefix> <repository> <ref> 3git subtree push --prefix=<prefix> <repository> …
Read More