一、预加载图像
如果你的网页中需要使用大量初始不可见的(例如,悬停的)图像,那么可以预加载这些图像。
$.preloadImages = function (){
for (var i=0; i<arguments.length; i++){
$('<img>').attr('src',arguments[i]);
}
};
$.preloadImages('img/hover-on.png','img/hover-off.png');
git执行下面命令生成SSH
ssh-keygen
打开复制
.ssh/id_rsa.pub
判断SSH是否配置好
ssh -T git@github.com
在_config.yml下面配置
deploy:
type: git
repository: https://github.com/codertian/codertian.github.io.git
或者:git@github.com:codertian/codertian.github.io.git
branch: master
保存,cd到Hexo的根目录
依次执行下面的命令
hexo clean
hexo g
hexo d