您的位置:首页 > Web前端 > HTML

动画效果打开新窗口

2012-03-07 22:10 183 查看
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="_3_7.WebForm2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <title></title>

    <script type="text/javascript">

        window.moveTo(0, 0); //距频幕左上的距离
        window.resizeTo(400, 400); //运行时指定频幕的位置

        function add() {

           window.resizeBy(60, 20); //向右下增大

        }

        setInterval(add, 200);

        alert(window.screen.width);

        alert(window.screen.height);

    </script>

</head>

<body>

    <form id="form1" runat="server">

    <div>

      

    </div>

    </form>

</body>

</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息