显示隐藏图片

来源:互联网 发布:require.js 编辑:程序博客网 时间:2024/05/13 13:54

   function showbigpic()
    {
        document.getElementById("456").style.visibility = "visible";
     
     
    }

    function hidebigpic() {
        clearTimeout(t);
        document.getElementById("456").style.visibility = "hidden";
    }

    function ysshow() {
        t=setTimeout("showbigpic()", 1000);
    }

原创粉丝点击