请老师看下2-9的编程练习
来源:2-9 自由编程
鱼传奇
2022-03-05 07:27:51
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> body p { margin: 0; padding: 0; } .box { position: relative; margin: 40px auto; width: 300px; height: 240px; overflow: hidden; } .box img { width: 300px; height: 240px; } .box .info { position: absolute; width: 280px; padding-left: 20px; height: 30px; line-height: 30px; color: white; top: 280px; background-color: rgba(0, 0, 0, .5); transition: top 1s ease 0s; } .box:hover .info { top: 210px } </style> </head> <body> <div class="box"> <img src="../images/duck.png" alt=""> <p class="info">这是一只小黄鸭</p> </div> </body> </html>
1回答
好帮手慕星星
2022-03-05
同学你好,代码实现效果很棒。继续加油,祝学习愉快!
相似问题