移动端适配方案pxtorem
摘要:####一、移动端适配方案pxtorem #####1、安装 # vue create hello-world创建的项目 npm i -D autoprefixer@8.0.0 npm i -D postcss-pxtorem npm i -S lib-flexible #####2、新建postc
阅读全文
echarts-3D地图
摘要:一、echarts常用属性 二、3D地图 1、安装 npm i -S echarts@4.9.0 echarts-gl//echarts5会报错 2、编码 a、geojson { "type": "FeatureCollection", "features": [ { "type": "Featur
阅读全文
百度地图绘制3D棱柱
摘要:一、引入脚本 <script type="text/javascript" src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=你的ak"></script> 二、编码 <template> <div style="height: 100%;positi
阅读全文
nuxt入门
摘要:一、创建项目 1、npm i -g create-nuxt-app 2、create-nuxt-app myproject 二、知识点 1、目录结构 2、路由 * layouts下的default.vue为根组件 * <Nuxt/>(一级路由)或<Nuxt-child/>(嵌套路由)相当于<rout
阅读全文
css-input输入框自动填入背景透明
摘要:一、输入框自动填入背景透明 input { /*背景透明*/ background-color: transparent; /*去边框*/ border: 0; /*去外边框*/ outline: none; /*文本颜色*/ color: white; } input:-webkit-autofi
阅读全文
html元素内容可编辑+元素内容不可选中
摘要:一、元素内容可编辑 <!--true:可编辑,默认false--> <element contenteditable="true|false"> 二、元素内容不可选中 <div style="-webkit-user-select: none;-moz-user-select: none;-o-us
阅读全文