You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
525 B

  1. @{
  2. ViewBag.Title = "图片展示";
  3. Layout = "~/Views/Shared/_Index.cshtml";
  4. }
  5. <div style="position:relative;height:800px;width:1440px;border:1px solid #ccc;">
  6. <img src="~/Content/images/imgshow/有货架图2.jpg" />
  7. </div>
  8. @Html.AppendJsFile("/Areas/LR_CodeDemo/Views/ImgShow/Demo2.js")
  9. <style>
  10. body {
  11. padding: 5px;
  12. overflow: auto;
  13. }
  14. img {
  15. position: relative;
  16. height: 100%;
  17. width: 100%;
  18. }
  19. </style>