gpt4 book ai didi

javascript - 使用卡住时通过 javascript 设置不透明度

转载 作者:行者123 更新时间:2023-11-30 17:34:59 24 4
gpt4 key购买 nike

我有一个图像动画,它会在 2 秒后淡入淡出图像,并在动画完成后通过使用 fill="freeze"使图像保持可见。

动画按预期工作。

设置卡住后,如何通过 javascript 更改不透明度?现在我无法更改脚本中的不透明度。如果我删除卡住我的脚本工作,但动画不再按预期工作(然后图像在完成完成后变得不可见)

   <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title></title>
</head>
<body>
<script language="javascript" type="text/javascript" >
window.onload = function() {
img1.addEventListener("click", clickImg);
};

function clickImg(event)
{
event.target.setAttribute("opacity",'0');
}
</script>
<svg id="svg1" xmlns="http://www.w3.org/2000/svg" version="1.1" >


<image x="25%" y="25%" width="30%" height="30%" id="img1"
opacity="0"

preserveAspectRatio="xMinYMin meet"
xlink:href="img/3dugs.jpg" >

<animate attributeName="opacity"
fill="freeze"
attributeType="CSS"
begin="2s" dur="2s" from="0" to="1"
repeatCount="1" />

</image>
</svg>
</body>
</html>

最佳答案

使用 animationEnd 事件知道动画何时结束。在处理程序中,删除动画并设置不透明度 = 1:

这是执行此操作的跨浏览器代码:

$('#img1').bind('animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd', function(){
//remove the animation here.
$(this).css('opacity', 1);
});

我假设您通过为包含动画的图像设置 CSS 类来启动动画。在我给你的处理程序中,删除所述类并将不透明度设置为 1。

希望对你有帮助。

关于javascript - 使用卡住时通过 javascript 设置不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22234637/

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