修复安卓ios绝大多数工具条显示不正常的问题

sheen 2022-3-6 731

//author:bangbang
function fixToolbar(){
    if(jutil.browser.versions.ios)
    {
        plugin.toolbar.$wrap.css({top:`calc(${visualViewport.height}px + ${visualViewport.offsetTop}px - 40px)`})
        setTimeout(()=>plugin.toolbar.$wrap.css({top:`calc(${visualViewport.height}px + ${visualViewport.offsetTop}px - 40px)`}),200)
    } else {
    	  plugin.toolbar.$wrap.css({top:`calc(${visualViewport.height}px - 40px)`})
        setTimeout(()=>plugin.toolbar.$wrap.css({top:`calc(${visualViewport.height}px - 40px)`}),200)
    }
}
visualViewport.addEventListener('resize',(e)=>{
    fixToolbar()
})
visualViewport.addEventListener('scroll',(e)=>{
    fixToolbar()
})
EVT(".node-text",{
    focus_renewtoolbar(){
       fixToolbar()
    },
    blur_renewtoolbar1(){
        fixToolbar()
    }
})

 

系统要求:ios13+

快速回复
最新回复 (2)
  • leo 2022-3-7
    0 2
    可以,edge移动端也可以使用底部菜单栏了
  • himrgin 2022-4-15
    0 3
    在哪下载啊 放个吧
返回