在这就需要用到@font-face(具体看一下语法)
/* 定义 */
@font-face {
font-family: 'MicrosoftYaHei';
src: url('MicrosoftYaHei.eot'); /* IE9 Compat Mo...
4年前 (2021-03-19)
喜欢
一般出现这种情况是因为网站开启了伪静态
可以先去伪静态把伪静态清空后保存,再去设置反向代理,反向代理设置好以后再去开启伪静态。
流程关闭伪静态-》开启反向代理-》再次开启伪静态
...
4年前 (2021-03-18)
喜欢
html
vue项目实现换肤功能
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Change back...
4年前 (2021-03-16)
喜欢
vue 使用npm run serve项目运行报错
Cannot find module 'vue-loader-v16/package.json'
将npm改为yarn安装依赖和运行搞定
yarn serve
...
4年前 (2021-03-03)
喜欢
打开设置
搜索Deployment
在弹出的信息框中添加服务器信息
确认保存后
选择后就出现了之前保存的服务器信息了
...
4年前 (2021-01-29)
喜欢
如果项目中包含 node_modules 目录,会使 PHPStorm 卡得很慢,PHPStorm 在进行大量的扫描工作。在设置中过滤掉对应的目录就可以了
...
4年前 (2021-01-18)
喜欢
...
4年前 (2021-01-14)
喜欢
工具 n
安装
sudo npm install -g n
使用
使用sudo 安装 nodejs
sudo n latest
切换node版本
n
...
4年前 (2021-01-13)
喜欢
创建分支
git branch fenzhiname
切换分支
git checkout fenzhiname
...
4年前 (2021-01-12)
喜欢
原始类型
目标类型
函数
举例
列表
集合
set
New_set=set([1,2,3,4,5])
列表
元组
tuple
New_tuple=tuple([1,2,3,4])
元组
集合
set
new_set=set((1,2,3,4))
元组
列...
4年前 (2021-01-07)
喜欢