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.
 
 
 
 
 
 

35 lines
1.3 KiB

  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/有货架图1.jpg" />
  7. <div data-value="1" class="node" style="top:360px;left:310px;width:160px;height:100px;transform: skewY(25deg)"></div>
  8. <div data-value="2" class="node" style="top:290px;left:430px;width:160px;height:110px;transform: skewY(25deg)"></div>
  9. <div data-value="3" class="node" style="top:120px;left:800px;width:160px;height:120px;transform: skewY(25deg)"></div>
  10. <div data-value="4" class="node" style="top:500px;left:630px;width:160px;height:100px;transform: skewY(25deg)"></div>
  11. <div data-value="5" class="node" style="top:440px;left:755px;width:160px;height:100px;transform: skewY(25deg)"></div>
  12. <div data-value="6" class="node" style="top:260px;left:1100px;width:160px;height:100px;transform: skewY(25deg)"></div>
  13. </div>
  14. @Html.AppendJsFile("/Areas/LR_CodeDemo/Views/ImgShow/Demo1.js")
  15. <style>
  16. body {
  17. padding: 5px;
  18. overflow: auto;
  19. }
  20. img {
  21. position: relative;
  22. height: 100%;
  23. width: 100%;
  24. }
  25. .node {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. font-size: 20px;
  30. color: #00ff21;
  31. }
  32. </style>