为了账号安全,请及时绑定邮箱和手机立即绑定

transform动画

transform动画用hover触发结束,鼠标移开为什么会“蹦”回去,而不是平滑回去的。

正在回答

3 回答

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>无标题文档</title>

<style>

div,p{padding: 0;margin:0;}

.u{width:100px; height:100px;position:relative; left:50%; top:100px;}

.f{width:100px; height:100px; background-color:#0F0;transition:all 5s;}

p{ position:absolute; width:70px; height:20px; color: #000; top:40%; left:15%;opacity:0;transform:translate(0px,50px);transition:all .5s;}

.u:hover .f{transform:rotate(360deg);background-color:#90C;opacity: 0}

.u:hover p{transition-delay:4.5s; opacity:1;transform:translate(0px,0px);}

</style>

</head>

<body>

<div class="u">

<div class="f"></div>

<p>点击观赏</p>

</div>


</body>

</html>

根据你的思路改的,之前不可以的原因是.u:hover的透明度为0的同时,p标签也透明了,所以看不见了,而且鼠标移上去p标签的动画也应该加在u:hover p{}上,不是直接加在p:hover上,还有动画延迟写错了,是transition-delay


0 回复 有任何疑惑可以回复我~
#1

KOF2003_耗子 提问者

谢谢哦饿
2015-12-10 回复 有任何疑惑可以回复我~

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>无标题文档</title>

<style type="text/css">

body,div{margin:0; padding:0; transition:all 5s;}

.u{width:100px; height:100px; background-color:#0F0; position:relative; left:50%; top:100px;}

.u:hover{ transition:all 5s; background-color:#90C; opacity:0.0;}

.u:hover{ transform:rotate(360deg);}

p{ position:absolute; width:70px; height:20px; color: #000; top:40%; left:15%;}

p{ transform:translate(0px,50px); opacity:0;}

p:hover{ transform:translate(0px,0px);}

p:hover{animation-delay:5s; opacity:1;}

</style>

</head>


<body>

<div class="u">

<p>点击观赏</p>

</div>


</body>

</html>

要是还能解决其他问题就太好了

0 回复 有任何疑惑可以回复我~

代码发出来

0 回复 有任何疑惑可以回复我~
#1

KOF2003_耗子 提问者

谢谢,我换了个位置就好了,只是不知道为什么当时会那样,因为是初学所以看不出所以然来。
2015-12-05 回复 有任何疑惑可以回复我~
#2

化龙贝 回复 KOF2003_耗子 提问者

。。。你代码发出来,我帮你分析下
2015-12-05 回复 有任何疑惑可以回复我~
#3

KOF2003_耗子 提问者 回复 化龙贝

谢谢观赏4个字想在图片动画结束再显示出来,我是不是要再添点什么啊,用div不好用
2015-12-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
CSS3图片动态提示效果
  • 参与学习       53895    人
  • 解答问题       142    个

实用的CSS3图片动态提示效果,熟练掌握CSS动画的制作技法

进入课程

transform动画

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信