会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
IT小姐姐
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
下一页
2021年9月8日
css实现滤镜效果(背景图模糊)
摘要: 模糊实例 图片使用高斯模糊效果: img { -webkit-filter: blur(5px); /* Chrome, Safari, Opera */ filter: blur(5px); } css语法: filter: none | blur() | brightness() | contr
阅读全文
posted @ 2021-09-08 10:37 IT小姐姐
阅读(363)
评论(0)
推荐(0)
2021年9月7日
vue 单独封装分页组件
摘要: 一、在components文件夹下新建 pagination.vue <template> <div class="page-wrap"> <ul> <li class="li-page" :plain="true" @click="goPrePage">«</li> <li v-for
阅读全文
posted @ 2021-09-07 08:22 IT小姐姐
阅读(249)
评论(0)
推荐(0)
2021年9月6日
nuxt.js框架 如何打包 build
摘要: nuxt脚手架开发好项目后怎么打包 以下是脚手架的package.json部分代码 "scripts": { "dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server", "build": "nuxt
阅读全文
posted @ 2021-09-06 09:05 IT小姐姐
阅读(1209)
评论(0)
推荐(0)
2021年8月10日
uniapp微信小程序 下拉刷新(上拉请求下一页数据)
摘要: <template>标签中: <view class="" v-if="daShow==1"> <view class="orderlist-list" @click="goDetail(item.id)" v-for="item in row_list" :key='item.id'> <!--
阅读全文
posted @ 2021-08-10 17:04 IT小姐姐
阅读(1157)
评论(0)
推荐(0)
2021年8月7日
nuxt.js安装使用
摘要: 首先要学会看文档,https://www.nuxtjs.cn/guide/configuration 一、创建项目,并运行 终端运行 npx create-nuxt-app <项目名> (npx(npx在NPM版本5.2.0默认安装了)),填写完项目信息后进入项目目录运行 npm run dev即可
阅读全文
posted @ 2021-08-07 11:10 IT小姐姐
阅读(220)
评论(0)
推荐(0)
uniapp 微信小程序自己封装头部标题栏
摘要: 一、首先要关闭原生导航栏 :在pages.json 中设置 "navigationStyle":"custom" 二、在APP.vue中 onLaunch: function() { uni.getSystemInfo({ success: function(e) { // #ifndef MP V
阅读全文
posted @ 2021-08-07 10:58 IT小姐姐
阅读(1657)
评论(0)
推荐(0)
2021年7月30日
js 非空判断
摘要: 是否为 null 是否为 "" 是否为空字符串(引号中间有空格) 如: " "。 制表符、换行符、换页符和回车 一. 字符串 1. if(str == null || str == "") 非空 if(str != null && str != "") 2. if(str == null || st
阅读全文
posted @ 2021-07-30 16:37 IT小姐姐
阅读(3112)
评论(0)
推荐(0)
uniapp中封装一个弹框组件
摘要: 第一步:在components下创建 popup.vue子组件; popup.vue中 <template> <view> <view class="popus-box"> <view class="content"> <view class="title">{{propsMsg.title}}</
阅读全文
posted @ 2021-07-30 16:20 IT小姐姐
阅读(1346)
评论(0)
推荐(0)
2021年7月19日
获取当前时间 :年月日
摘要: 当前时间:<div>{{updateTime}}</dmethods:{ infor(){ var that = this; that.addDate() }, //获取当前年月日 addDate(){ var that = this; const nowDate = new Date(); con
阅读全文
posted @ 2021-07-19 17:35 IT小姐姐
阅读(268)
评论(0)
推荐(0)
2021年7月12日
css样式实现平行四边形
摘要: 强大的css样式实现平行四边形: 啥也不说了,直接上代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met
阅读全文
posted @ 2021-07-12 17:05 IT小姐姐
阅读(276)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
下一页
公告