capture 및 unCapture IE 외부 브라우저 캡처
function syncScroll(){
Hc.isCapture && overlayElement.setLocation(Hc.getScroll());
}
capture:Hc.isIE?function(target){
if(Hc.captureTarget){
Hc.unCapture();
}
(Hc.captureTarget = Hc.getDom(target)).setCapture();
Hc.isCapture = true;
}:function(target/*,handle*/){
Hc.isCapture = true;
if(!overlayElement){
overlayElement = Hc.getBody().on("scroll",syncScroll).createIn({
cls:"hc-capture-overlay"
},true);
}
/*
2010-07-15 2
handle = handle || target;
if((handle = handle || target)!=cacheHandle){
cacheHandle = handle;
overlayElement.setStyle("cursor",Hc.fly(cacheHandle,"_capture").getStyle("cursor"));
}
*/
if(target != cacheTarget){
cacheTarget = target;
cacheFly = Hc.fly(cacheTarget,"_capture");
overlayElement.setStyle("cursor",cacheFly.getStyle("cursor"));
}
overlayElement.show();
syncScroll();
Hc.captureTarget = cacheFly.dom;
},
/**
*@getter .
*/
captureTarget:null,
/**
*@getter .
*/
isCapture:false,
/**
* .
*/
unCapture:function(){
if(Hc.captureTarget){
Hc.isIE ? Hc.captureTarget.releaseCapture():overlayElement.hide();
Hc.captureTarget = null;
Hc.isCapture = false;
}
},
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Microsoft Edge 편리 기능】URL 바를 카피하면 타이틀을 포함한 Markdown 형식으로 붙여넣기 가능업무로 이용하고 있는 Microsoft 계정으로 관리를 할 수 있는 것이 일인으로 보급되었던 Microsoft Edge에는, URL을 타이틀도 포함한 Markdown 형식으로 copipe 할 수 있는 편리한 기능이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.