首先安装依赖
npm i postcss-pxtorem --save
创建配置文件
postcss.config.js
module.exports = {
plugins: {
autoprefixer: {},
"postcss-pxtore...
yekong
3年前 (2021-08-16)
喜欢
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
...
yekong
3年前 (2021-08-16)
喜欢
demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content=...
yekong
3年前 (2021-08-15)
喜欢
"update_check": false
...
yekong
3年前 (2021-08-15)
喜欢
Simple URLs
Simple URLs外部跳转插件 可以实现统计跳转次数
...
yekong
3年前 (2021-08-15)
喜欢
autoindex off;
...
yekong
3年前 (2021-08-15)
喜欢
开启特色图像/缩略图
// 开启特色图并设置默认大小
add_theme_support ( 'post-thumbnails' );
set_post_thumbnail_size ( 160 );
自动设置特色图像
放到主题的functions.php里面。...
yekong
3年前 (2021-08-15)
喜欢
经纬度转为数字,苹果可能是传为字符串导致无法访问
wx.getLocation({
type: 'wgs84',
success: function(res) {
...
yekong
3年前 (2021-08-14)
喜欢
document.oncopy = function () {
return false;
};
document.onmousedown = function (e) {
if (e.which == 2) {
return false...
yekong
3年前 (2021-08-14)
喜欢
Wxml
<input
type="number"
:placeholder="placeTips"
placeholder-style="font-size:24rpx"
v-model=&quo...
yekong
3年前 (2021-08-13)
喜欢