이것 괜찮아요?
1364 단어 압축
function ooaoao($dom, target, e) {
var left = $(target).offset().left,
top = $(target).offset().top,
domHeight = this.boxHeight + e.clientY,
domWidth = this.boxWidth + e.clientX + $(target).parent().width(),
screenH = $(window).height() - $('#global_header').height(),
screenW = $(window).width();
top = domHeight > screenH ? top - (domHeight - screenH) : top;
left = domWidth > screenW ? left - (domWidth - screenW) : left + $(target).parent().width();
$('#shareBox').css({
'left': left,
'top': top,
'z-index': 100,
position: 'absolute'
});
}
function ooaoao(a, c, b) {
var a = $(c).offset().left,
d = $(c).offset().top,
e = this.boxHeight + b.clientY,
b = this.boxWidth + b.clientX + $(c).parent().width(),
f = $(window).height() - $("#global_header").height(),
g = $(window).width(),
d = e > f ? d - (e - f) : d,
a = b > g ? a - (b - g) : a + $(c).parent().width();
$("#shareBox").css({
left: a,
top: d,
"z-index": 100,
position: "absolute"
})
};
이 압축은 매우 믿을 만하다. 단지 누군가가 쓴 코드는 매우 믿을 수 없다.나는 정말 그를 좀 만나고 싶다
위의 매개 변수 중의 $dom는 함수에서 사용하지 않았습니다. 매개 변수 e는 함수체의 네 번째 줄 이후에 다시 사용하지 않았습니다. 그래서 다섯 번째 줄에서 덮어쓰기 시작했습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Cognos 보고서 PDF 출력의 성능 튜닝 매개 변수 검증 결과보고서를 PDF로 출력할 때 Report Service 또는 Batch Report Service 매개변수에서 PDF 출력의 글꼴과 압축을 조정할 수 있는 Cognos Administration 매개변수가 있습니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.