书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 56270 个相关结果.
  • Architecture

    Architecture Introduction to Apache InLong Manager Architecture Module division of labor use process data model Architecture Introduction to Apache InLong Manager Target ...
  • Page Layouts

    Page Layouts On this page Default structure Sections Components Landing page Example Alert homepage Blog page Example Documentation page Example main toc nav Page ...
  • Add Kong as a delegated Gateway

    Use Kong as a delegated Gateway Prerequisites Install Kong ingress controller Enable sidecar injection on the kong namespace Add a route to our demo-app Next steps Use Ko...
  • 如何延时触发事件

    如何延时触发事件 代码 如何延时触发事件 jQuery的文档中提到性能优化的时候,有一条就是关于事件触发频率的问题,大部分影响性能的操作不是click 之类的事件,而是scroll ,mouseover 这样的事件。解决这些事件频繁触发的方法也很简单,就是加一个定时器,延时执行。 代码 function debounce ( method ...
  • 移动端fixed布局

    1348 2018-07-17 《前端工程师手册》
    移动端fixed布局 参考资料 移动端fixed布局 在移动开发的过程中,元素使用fixed布局在safari下经常会遇到问题,比如: ios6下,不固定,滑动会突然跳动 输入框在弹出键盘后,不吸附在键盘上方 fixed的元素宽度不能自适应,在ios6下横竖屏切换的过程中 iframe下,fixed元素高度超大 参考资料 移动Web开发...
  • iPad的bug合集

    iPad的bug合集 ipad上滚动条,在滚动过程之中,无法捕获滚动高度? fixed布局元素宽度在旋转的时候会有计算问题 参考资料 iPad的bug合集 ipad上滚动条,在滚动过程之中,无法捕获滚动高度? 双指滑动的过程之中,js不会被触发。除非全部接管touch事件,比如使用skrollr. How can I monitor s...
  • 框架结构

    1323 2018-07-17 《前端工程师手册》
    框架结构 闭包 模块 参考资料 框架结构 第一个框架,我们选择模仿jQuery,这是目前web之中使用最广泛的一个库。 这个框架暂时就叫做mock.js , 模仿学习的意思。 闭包 js的变量作用域是按函数划分的,闭包是函数内部的函数,能够有效的保护好变量不污染外部。需要外部的接口,通过window挂载出去。比如这样: ( funct...
  • Add Kong as a delegated Gateway

    Use Kong as a delegated Gateway Prerequisites Install Kong ingress controller Enable sidecar injection on the kong namespace Add a route to our demo-app Next steps Use Ko...
  • v5.8.1-release

    v5.8.1-release Detailed change points new features Optimization function BUG fix v5.8.1-release Detailed change points new features 【Application management】 Support one c...
  • 单例模式: Singleton

    1033 2018-07-17 《前端工程师手册》
    单例模式 实现 方式一 方式二 参考资料 单例模式 单例模式是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例类的特殊类。通过单例模式可以保证系统中一个类只有一个实例而且该实例易于外界访问,从而方便对实例个数的控制并节约系统资源。 如果希望在系统中某个类的对象只能存在一个,单例模式是最好的解决方案。 实现 方式一 va...