微信小程序
kumaleap
Read the fucking source code!
展开
-
微信小程序-去除页面滚动条
实现代码是/* ::-webkit-scrollbar {width: 0;height: 0;color: transparent;display: none;} */但是今天使用的时候突然不能生效了,之前是可以的。研究了一下,发现没有给父级元素设置属性。.store-page { //父元素width: 100vw;height: 100vh;overflow-x: ...原创 2019-03-07 10:27:07 · 6696 阅读 · 3 评论 -
小程序 css样式 gif和图片叠加效果 使用 mix-blend-mode
mix-blend-mode: normal; //正常mix-blend-mode: multiply; //正片叠底mix-blend-mode: screen; //滤色mix-blend-mode: overlay; //叠加mix-blend-mode: darken; //变暗mix-ble...原创 2019-03-07 16:37:20 · 2590 阅读 · 0 评论 -
iphoneX兼容之自定义底部菜单
当我们需要自定义底部导航栏时 首先要解决iphoneX的底部大横条对这个兼容 通常不设置兼容 都会被挡住 使用css编写即可兼容 无需编写js代码在你要编写的底部菜单中插入 样式padding-bottom: calc(env(safe-area-inset-bottom) /2) 即可兼容例如:css中插入 @supports (bottom: const...原创 2019-04-09 17:49:28 · 2391 阅读 · 0 评论