自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 js获取当前经纬度

//获取当前经纬度if(navigator.geolocation) { navigator.geolocation.getCurrentPosition( function (position) { console.log( position.coords.longitude ); console.log( position.coords.latitude ); }, function (e) {

2022-05-29 13:43:53 5389

原创 图片访问403

图片访问403 方法1调整视口图片访问403 方法2图片url前拼接上 ‘https://images.weserv.nl/?url=’

2022-05-29 12:02:51 84

原创 VUE楼层导航 左右联动

<template> <div class="chart"> <div class="nav"> <div class="nav-List" v-for="(item,index) in list" :key="item.id" @click="toTarget(index)"> {{item.name}} </div> </div> <div class="co

2022-05-29 11:34:55 704

原创 git配置ssh公钥

配置全局邮箱,账号邮箱: git config --global user.name "username"生成ssh公钥ssh-keygen -t rsa -C "your_emial@examle.com"//输入之后,一直回车,直到下面类似图片出现//cmd查看公钥cat ~/.ssh/id_rsa.pub 若报错’cat’ is not recognized as an internal or external command,输入powershell回车//cmd查.

2022-05-29 11:20:18 1525

原创 前端知识=====如何做适配

前端知识=====如何做适配1、安装lib-flexible插件,可以根据屏幕大小自动变化根元素变化font-size属性npm install lib-flexible --save-dev在入口文件main.js里import 'lib-flexible'目前还有个弊端,他默认只考虑到移动端,不管你设备尺寸再大font-size最大是54px,所以需要改下源码===打开项目中node_modules\lib-flexible\flexible.js需要将540改成屏幕宽度改之后2

2021-06-27 08:56:46 217

原创 js基础==基本数据类型,引用数据类型

js基础==基本数据类型,引用数据类型 检测数据类型一、基本数据类型Number,String,Boolean,Undefined,Null二、引用数据类型对象Object,数组Array,function,正则,日期,Math三、检测数据类型//1、tyoeof console.log(typeof 8); //number console.log(typeof '字符串'); //string console.log(typeof false); //

2021-06-26 21:42:34 114

原创 新手前端 ------- 参见

写的第一篇东西 哈哈哈

2021-06-26 18:52:27 51

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除