3-3 折翼天使表现特性一:去浮动
本节编程练习不计算学习进度,请电脑登录imooc.com操作

折翼天使表现特性一:去浮动

折翼天使表现特性一:去浮动

任务

老师视频里的不同布局写法,不是习题!!不是习题!!!

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>折翼天使表现特性一:去浮动</title>
  6. <style>
  7. input[type=button] {
  8. height: 32px;
  9. font-size: 100%;
  10. }
  11. </style>
  12. </head>
  13.  
  14. <body>
  15. <img src="http://img1.sycdn.imooc.com//54447b06000171a002560191.jpg">
  16. <img src="http://img1.sycdn.imooc.com//54447f4a0001eb7d01910256.jpg">
  17. <img src="http://img1.sycdn.imooc.com//54447f550001ccb002560191.jpg">
  18. <p><input type="button" id="float" value="点击第2张图片应用float:left"></p>
  19. <p><input type="button" id="button" value="点击第2张图片应用position:absolute"></p>
  20. <script>
  21. var flbtn = document.getElementById("float"),
  22. button = document.getElementById("button"),
  23. image2 = document.getElementsByTagName("img")[1];
  24. if (flbtn && button && image2) {
  25. var value_init = button.value;
  26. button.onclick = function() {
  27. if (this.value == value_init) {
  28. image2.style.position = "absolute";
  29. this.value = "撤销";
  30. } else {
  31. image2.style.position = "";
  32. this.value = value_init;
  33. }
  34. };
  35.  
  36. flbtn.onclick = function() {
  37. image2.style["cssFloat" in this.style? "cssFloat": "styleFloat"] = "left";
  38. };
  39. }
  40. </script>
  41. </body>
  42. </html>
下一节