上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页

2021年1月20日

摘要: 常见的两种夜间模式设计方式 1、在所有页面上加一层黑色半透明的蒙版,例如今日头条、微博、百度、虎嗅等 2、改变背景色色值和文字色值,例如:夸克浏览器、网易新闻、网易云音乐、糗事百科、QQ等 夜间模式是如何实现的 不同的元素实现方式有些区别: 文字和背景色只需要设置好两个不同的色值,通过打开和关闭夜间 阅读全文
posted @ 2021-01-20 12:06 LeeToLee 阅读(728) 评论(0) 推荐(0) 编辑

2021年1月19日

摘要: ::-webkit-scrollbar { display: none; width: 0 !important; height: 0 !important; -webkit-appearance: none; background: transparent; } 不用选择器,直接加在App.vue 阅读全文
posted @ 2021-01-19 16:23 LeeToLee 阅读(441) 评论(0) 推荐(0) 编辑
 
摘要: <view class="cate-search"> <view class="icon"><image mode="heightFix" src="../../static/icon/sousuo.png"></image></view> <view class="left"><input pla 阅读全文
posted @ 2021-01-19 15:34 LeeToLee 阅读(58) 评论(0) 推荐(0) 编辑

2021年1月16日

摘要: 效果: 代码: // pages.json ,需要的页面添加 { "path": "pages/ServiceHome/ServiceHome", "style": { "navigationBarTitleText": "uni-app", "navigationBarBackgroundColo 阅读全文
posted @ 2021-01-16 14:48 LeeToLee 阅读(9224) 评论(0) 推荐(0) 编辑
 
摘要: npm install --legacy-peer-deps // 解决如下问题 阅读全文
posted @ 2021-01-16 09:45 LeeToLee 阅读(1319) 评论(0) 推荐(0) 编辑
 
摘要: 使用苹果登录首先需要在苹果开发者后台开启 App 的 Sign In with Apple 服务 1.登录到苹果开发者后台 编辑对应的 Identifier 勾选 Sign In with Apple 服务并保存 2.勾选或取消服务,会导致之前的 profile 描述文件失效,不需要新建,只要点击 阅读全文
posted @ 2021-01-16 09:41 LeeToLee 阅读(1383) 评论(0) 推荐(0) 编辑

2021年1月15日

摘要: 原因:使用了原生的button按钮,而使用原生按钮需要注意的是:原生按钮button默认type='submit'这个属性值是默认具有表单提交功能的,所以在非IE浏览器下会存在点击后刷新页面的问题 解决方案1:在原生button按钮中更改type='button'属性值就可以了,此时它就是一个单纯的 阅读全文
posted @ 2021-01-15 14:16 LeeToLee 阅读(2429) 评论(0) 推荐(0) 编辑

2021年1月14日

摘要: 建议input标签有个autocomplete属性 autocomplete 用途: 主要是记住输入内容,下次提交表单或者浏览器回退后,还能保持表单内容不变。 阅读全文
posted @ 2021-01-14 15:16 LeeToLee 阅读(71) 评论(0) 推荐(0) 编辑
 
摘要: input::placeholder{ color: #fff; }// 中间 两个冒号 阅读全文
posted @ 2021-01-14 14:53 LeeToLee 阅读(75) 评论(0) 推荐(0) 编辑

2021年1月5日

摘要: box-shadow: 0 2px 16px #000, 0 0 1px #000, 0 0 1px #000; 参数可调 阅读全文
posted @ 2021-01-05 15:11 LeeToLee 阅读(1327) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页