gpt4 book ai didi

css - 在动画后应用悬停效果

转载 作者:行者123 更新时间:2023-11-28 13:01:27 27 4
gpt4 key购买 nike

我有一个应用于

的动画
`une
{margin-top: 245px;margin-left: 545px; -webkit-animation:move ease 1 forwards 15s 3s; -moz-animation:move ease 1 forwards 15s 3s ;animation:move ease 1 forwards 15s 3s ;


-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;}`

所以在这之后我希望能够将鼠标悬停在这个元素(这是一个图像)上以改变它的比例或制作另一个图像应用程序,但是无论我做什么它都不起作用。所以让我们说 une:hover{-webkit-transform:scale(1;1)} 不工作有人有任何想法/解决方案吗?

最佳答案

我不得不为我的网站做一些类似的事情,检查一下- http://jsfiddle.net/apaul34208/v7k7f/10/

这是一个更简单的版本- http://jsfiddle.net/apaul34208/MzSkJ/1/

.une {
position:absolute; /* use position rather than margin */
top:--px;
left:--px;
-webkit-animation:lightSpeedIn 1s;
-moz-animation:lightSpeedIn 1s;
animation:lightSpeedIn 1s;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
}
.une:hover {
transform-origin:top; /* keeps it on the viewable screen */
transform:scale(2.5);
}

我认为 transform-originposition 可能是缺失的部分,但我需要看动画才能确定。

动画语法看起来也有点不对劲。 Try using the formal syntax -

animation: name duration easing delay iteration-count direction fill-mode;

关于css - 在动画后应用悬停效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16126668/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com