⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ifm_show_prd.js

📁 巴巴运动网源码 传智博客出品 不全 一部分代码 可以参考
💻 JS
字号:
锘縱ar dragy=0,dragx=0;
var dragapproved=false;

function moveF(e)
{
    if (e.button==0)
	{
	    window.scrollBy(dragx-e.pageX,dragy-e.pageY);
	    dragy=e.pageY;
		dragx=e.pageX;
	}
}

function downF(e)
{
    dragy=e.pageY;
	dragx=e.pageX;
}


if (window.navigator.userAgent.indexOf("Firefox")>=1)
{
    document.onmousedown=function(e)
    {
	    document.onmousemove=function(e)
        {
             moveF(e);
        }  
    }
    document.onmouseup=function()
    {
        document.onmousemove=null;
    }
}
else
{
    document.onmousemove=function()
    {
        if ((event.button==0 || event.button==1)&&dragapproved)
	    {
		    window.scrollBy(dragx-event.clientX,dragy-event.clientY);
		    dragy=event.clientY;
		    dragx=event.clientX;
		    return false;
	    }
    }
    document.onmousedown=function()
    {
        dragy=event.clientY;
	    dragx=event.clientX;
	    dragapproved=true;
    }
    document.onmouseup=function()
    {
        dragapproved=false;
    }
}




function suitImage(img,w,h)
{
		var image=new Image();
        image.src=img.src;

		var iw=image.width;
		var ih=image.height;
		var iratio=iw/ih;
        
        if(iw>w)
		{
                iw=w;
				ih=w/iratio;
        }
        if(ih>h)
		{
                ih=h;
                iw=h*iratio;
        }  
		img.width=iw;
		img.height=ih;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -