25_隐藏效果.html 851 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 400px;
  10. height: 400px;
  11. border:3px solid black;
  12. }
  13. .box:hover .box2{
  14. display: none;
  15. }
  16. .box2:hover{
  17. display: none;
  18. }
  19. .box2{
  20. width: 100px;
  21. height: 100px;
  22. /* background-color: rgba(0, 0, 0, 0); */
  23. background-color: red;
  24. /* opcity 控制元素的透明度 取值范围0-1 */
  25. /* opacity: 0.9; */
  26. /* display: none; */
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="box">
  32. <div class="box2"></div>
  33. <span>hello</span>
  34. </div>
  35. </body>
  36. </html>