为WordPress主题添加页面加载进度条 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

为WordPress主题添加页面加载进度条 – WordPress 教程

pace.js是一个非常赞的JavaScript插件,可以实时监听页面的数据加载,包括Ajax请求,显示页面加载进度,并且能够定制样式,类似浏览器加载进度条,比如Safari。

下面以WordPress默认主题Twenty Seventeen为例,将这个特效功能加到主题中。

首先下载:pace.js

pace.min.js下载

将pace.min.js放到Twenty Seventeen主题twentyseventeenassetsjs目录中。

打开Twenty Seventeen主题函数模板functions.php,将:

wp_enqueue_script( 'pace.min', get_theme_file_uri( '/assets/js/pace.min.js' ), array( 'jquery' ), '1.0', true ); 

添加到大约450行下面。

将样式代码,添加到主题style.css最后:

.pace {     -webkit-pointer-events: none;     pointer-events: none;     -webkit-user-select: none;     -moz-user-select: none;     user-select: none;     -webkit-transition: opacity 0.8s ease-in-out;     -moz-transition: opacity 0.8s ease-in-out;     -o-transition: opacity 0.8s ease-in-out;     transition: opacity 0.8s ease-in-out; } .pace-inactive {     opacity: 0;     filter: alpha(opacity=0); } .pace .pace-progress {      background: #3690cf;     position: fixed;     z-index: 2000;     top: 0;     rightright: 100%;     width: 100%;     height: 2px; }

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: