frame.php 779 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head>
  3. <style>
  4. *{
  5. margin:0;
  6. padding:0;
  7. border:0;
  8. }
  9. .bottome{
  10. width:100%;
  11. height:70px;
  12. background:#ccc;
  13. position:absolute;
  14. bottom:0px;
  15. }
  16. .bone{
  17. width:30%;
  18. margin-left:3%;
  19. float:left;
  20. }
  21. .bone a{
  22. text-decoration:none;
  23. color:#fff;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <iframe name="display" style="width:100%; height:100%;overflow-x:auto; " src="/mobile"></iframe>
  29. <div class="bottome" align="center">
  30. <div class="bone"><a href="#" target="display">首页</a></div>
  31. <div class="bone"><a href="#" target="display">订单管理</a></div>
  32. <div class="bone"><a href="#" target="display">个人中心</a></div>
  33. </div>
  34. </body>
  35. </html>