小面板中的大图像(图像超出面板)

| 我将一个大图像添加到ASP面板中,并且超出面板。我想要面板中没有滚动条的图像,并使用javascript在面板中移动图像。我怎样才能做到这一点。这是我的代码
<%@ Page Language=\"C#\" AutoEventWireup=\"true\" CodeFile=\"move background.aspx.cs\"   Inherits=\"move_background\" %>

 <!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 id=\"Head1\" runat=\"server\">
<title></title>
<script type=\"text/javascript\">
    Hmove = 12;
    function moveObjRight(obj) {
        var a = document.getElementById(obj);
        var Left = parseInt(a.style.left);
        var newpo = Left + Hmove;
        a.style.left = newpo + \"px\";

    }
</script>

 </head>
 <body>
 <form id=\"form1\" runat=\"server\">

    <asp:Panel ID=\"Panel1\" runat=\"server\" Height=\"133px\" 
        style=\"z-index: 1; left: 0px; top: 0px; position: absolute; height: 500px;  width: 1000px\" 
        Width=\"166px\" ForeColor=\"#990000\" BackColor=\"#0066FF\" 
        Direction=\"LeftToRight\" HorizontalAlign=\"Left\">

    <img alt=\"asd\" src=\"Pictures/view.gif\" id=\"AS\" style=\"z-index: 1; left:100px; top:100px; position: relative\"/> \'BIG IMAGE\'
    <img alt=\"move left\" src=\"\" id=\"moveleft\" onclick=\"javascript:moveObjRight(\'AS\');\"
        style=\"z-index: 1; left: 222px; top: 264px; position: absolute; height: 33px; width: 34px;\"/>
    </asp:Panel> 

</form>
</body>
</html>
    
已邀请:
在面板中添加样式“ 1”。     

要回复问题请先登录注册