方法一: 鼠標移到flash上時,隱藏父頁面滾動條;移出flash時,顯示滾動條。
缺點:因顯示和隱藏滾動條時頁面寬度發(fā)生變化,出現(xiàn)晃動。
function mouseOverControlScroll(){
var htmlbody =parent.document.documentElement;
htmlbody.style.overflow = "hidden";
}
function mouseOutControlScroll(){
var htmlbody = parent.document.documentElement;
htmlbody.style.overflow = "auto";
}
方法二:鼠標移到flash時,讓頁面滾動條失效。
function mouseOverControlScroll(){
document.onmousewheel=function(){
window.event.returnValue = false;
}
本站僅提供存儲服務,所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權內(nèi)容,請
點擊舉報。