Blogger Information
Blog 47
fans 0
comment 0
visits 21049
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
iframe实现后台管理
P粉036614676
Original
512 people have browsed it

1.iframe

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>后台</title>
  8. <style>
  9. @import url('./static/css/admin.css');
  10. </style>
  11. </head>
  12. <body>
  13. <!-- <figure>
  14. <figcaption>导航</figcaption>
  15. <div class="first">
  16. <a href="https://j.map.baidu.com/d0/Bhdu" target="city">合肥市</a>
  17. <a href="https://j.map.baidu.com/45/g" target="city">上海市</a>
  18. <a href="https://j.map.baidu.com/fe/J" target="city">杭州市</a>
  19. </div>
  20. <div class="seconde">
  21. <iframe src="./static/images/girl.jpg" frameborder="0" name="city" width="1000px" height="1000px"></iframe>
  22. </div>
  23. </figure> -->
  24. <header>
  25. <h1>网站后台管理系统</h1>
  26. <section>
  27. <em>admin</em>
  28. <button onclick="location.href='logout.php'">退出</button>
  29. </section>
  30. </header>
  31. <nav>
  32. <a href="../1017/demo1.html" target="content">元素属性</a>
  33. <a href="../1017/demo2.html" target="content">布局元素</a>
  34. <a href="../1017/demo3.html" target="content">图文列表</a>
  35. <a href="../1017/demo4.html" target="content">图片链接与列表</a>
  36. <a href="../1017/demo5.html" target="content">细说表格</a>
  37. <a href="../1018/demo1.html" target="content">表单元素与控件</a>
  38. <a href="demo1.html" target="content">音频与视频元素</a>
  39. </nav>
  40. <iframe src="" name="content"></iframe>
  41. </body>
  42. </html>

a的target和iframe的name一一对应

2.选择器

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>音频</title>
  8. <style>
  9. p{
  10. background-color: red;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <video src="./static/images/test.mp4" controls autoplay muted loop poster="static/images/girl.jpg"></video>
  16. <audio src="" controls autoplay muted></audio>
  17. <p>aaa</p>
  18. <p>bbb</p>
  19. <p>ccc</p>
  20. </body>
  21. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:要是配合实例效果图就更好了,继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post