js鼠标滑到图片上显示渐变弹出大图
//
return window.undefined;
}
function getViewportWidth() {
if (window.innerWidth!=window.undefined) return window.innerWidth;
if (document.compatMode=='CSS1Compat') return document.documentElement.clientWidth;
if (document.body) return document.body.clientWidth;
return window.undefined;
}
/**
* Gets the real scroll top
*/
fun...阅读全文