3-2编程练习
提交了代码,但是没有显示下一节,也没有任何其他显示,请求打野支援!
我的代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>3-2 作业</title>
<style>
div{
font-size: 14px;
font-weight: bold;
line-height: 50px;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 200px;
height: 50px;
margin: auto;
cursor: pointer;
text-align: center;
background: #abcdef;
/*此处写代码*/
transform-origin: 50% 50%;
}
/*此处写代码*/
div:hover{
font-size: 28px;
font-weight: bold;
line-height: 100px;
width: 400px;
height: 100px;
transition-property: all;
transform: rotate(360deg);
transition-duration: 2s;
transition-delay: 1.5s;
transition-timing-function: ease-in-out;
}
div{
font-size: 14px;
font-weight: bold;
line-height: 50px;
width: 200px;
height: 50px;
transition-property: all;
transform: rotate(0deg);
transition-duration: 2s;
transition-delay: 1.5s;
transition-timing-function: ease-in-out;
}
</style>
</head>
<body>
<div>www.imooc.com</div>
</body>
</html>
正在回答
你的效果实现了的。把鼠标放倒图上面会旋转。不过你设置了2s,要等两秒才能动。另外,不是没有提示,而是你的作业还没有批复,所以你只能看提交作业的那个课后面的一门课,下下门课是不能看的,必须要等作业批改了才能往下学习。
- 参与学习 1887 人
- 提交作业 4643 份
- 解答问题 5760 个
有HTML和CSS基础,却不知道如何进阶?本路径带你通过系统学习,完成从“会做网页”到“做出好的动态网页”的蜕变,迈出成为前端工程师的第一步。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星