Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

前端技术体系收集 #47

Open
liyatang opened this issue Jul 9, 2018 · 14 comments
Open

前端技术体系收集 #47

liyatang opened this issue Jul 9, 2018 · 14 comments

Comments

@liyatang
Copy link
Contributor

liyatang commented Jul 9, 2018

流程:

  • 评论区留下知识点(知识点标题 [+ 内容 or 链接])
  • 负责人会收集和整理
  • 完善知识点
  • 并入 README
@HecateDK
Copy link

HecateDK commented Jul 9, 2018

css

  1. css 当bootstrap的样式与需求冲突了,怎么解决
  2. css ma和station两套主色调,怎么做

store

  1. 为什么从redux迁移到mobx,有什么要注意的?

webpack

  1. webpack (缓存 css与js分离 、打包速度、代码压缩)

bug排查

  1. 如果排查线上bug

其他

  1. url转码

小程序

taro
mpvue
wepy

@liyatang
Copy link
Contributor Author

liyatang commented Jul 9, 2018

ssh 原理

nginx

一些常用 linux 命令

@Chaoming-L
Copy link

Chaoming-L commented Jul 9, 2018

npm

相关知识 w4096/notebook#42

Mobx

中文文档: https://cn.mobx.js.org/

@chenzesam
Copy link

fundebug 总结

@liyatang
Copy link
Contributor Author

babel-preset-env 迁移

@liyatang
Copy link
Contributor Author

url 参数 知识点

@liyatang
Copy link
Contributor Author

@heyong-2015
Copy link

移动端1px问题

@liyatang
Copy link
Contributor Author

@HecateDK
Copy link

移动端踩坑

@Gesangs
Copy link

Gesangs commented Aug 17, 2018

@Pines-Cheng
Copy link

交互方面的权威指南,特别是移动端应用及组件:Human Interface Guidelines

@Gesangs
Copy link

Gesangs commented Dec 18, 2018

移动端hover:https://www.w3cways.com/1963.html

@liyatang
Copy link
Contributor Author

// 修复 ios 微信内键盘弹回页面没弹回bug,6.7.4 之上都有
// 通过增加页面搞定,然后复原来 hack
function fixWeiXinKeyboard () {
  if (is.iOS() && is.weixin()) {
    window.document.body.addEventListener('focusout', (e) => {
      if (e.target.tagName.toLocaleLowerCase() === 'input') {
        // 小于 100 不行,100.01 不行,100.1 行
        window.document.body.style.height = '100.1%'
        setTimeout(() => {
          window.document.body.style.height = ''
        }, 1)
      }
    })
  }
}

https://developers.weixin.qq.com/community/develop/doc/00080c60510038c78ae76d20951c00?highLine=%25E9%2594%25AE%25E7%259B%2598%25E5%2585%25B3%25E9%2597%25AD

https://developers.weixin.qq.com/community/develop/doc/000480392787f052a2b7d022f51c00?highLine=%25E9%2594%25AE%25E7%259B%2598%25E5%2585%25B3%25E9%2597%25AD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants