常用插件html
摘要:1、上传模板,插件 https://github.com/kartik-v/bootstrap-fileinput 2、
阅读全文
chrome.debugger
摘要:Now you can navigate to the given port from your client and attach to any of the discovered tabs for debugging: http://localhost:9222 You will find th
阅读全文
chrome 扩展 调试
摘要:开发chrome扩展,有时候需要输出console.log 通常调试的popup.html.content_script.backgroup.html等 但是有一些是没有这些的 1、推荐一个扩展: https://chrome.google.com/webstore/detail/socketlog
阅读全文
css 横向滚动条webkit-scrollbar
摘要:最近遇到一个横向滚动条的问题: 官网链接: https://developer.mozilla.org/zh-CN/docs/Web/CSS/::-webkit-scrollbar 这个 ::-webkit-scrollbar CSS伪类选择器影响了一个元素的滚动条的样式 ::-webkit-scr
阅读全文
Electron mouse events 参数解析
摘要:1、https://electronjs.org/docs/api/web-contents 2、通常用: monitorEvents(document.body, 'mouse') 检测正常的值: screenX 467 == globalXscreenY 301 == globalYclient
阅读全文
console.log等不能打印全部数据/信息
摘要:有时候console.log在chrome调试控制台打印不全,如下: 这个时候,我们可以点击进去:用watch 工具,添加变量,右击copy value 选项:
阅读全文
chrome 调试跨域iframe
摘要:相关链接:https://stackoverflow.com/questions/3102819/disable-same-origin-policy-in-chrome https://stackoverflow.com/questions/25098021/securityerror-block
阅读全文
chrome 调试参数(鼠标事件)
摘要:1、监听鼠标事件: monitorEvents(document.body, 'mouse') 取消监听: unmonitorEvents(document.body) 原文链接: https://briangrinstead.com/blog/chrome-developer-tools-moni
阅读全文
Fb,tw等emoji相关
摘要:最近处理fb emoji,查了下相关的资料。记录于此 twitter blog 关于:https://blog.twitter.com/developer/en_us/a/2014/open-sourcing-twitter-emoji-for-everyone.html 872 emoji. tw
阅读全文