|
1234567891011121314151617181920 |
- @{
- ViewBag.Title = "图片展示";
- Layout = "~/Views/Shared/_Index.cshtml";
- }
- <div style="position:relative;height:800px;width:1440px;border:1px solid #ccc;">
- <img src="~/Content/images/imgshow/有货架图2.jpg" />
- </div>
- @Html.AppendJsFile("/Areas/LR_CodeDemo/Views/ImgShow/Demo2.js")
- <style>
- body {
- padding: 5px;
- overflow: auto;
- }
-
- img {
- position: relative;
- height: 100%;
- width: 100%;
- }
- </style>
|