gpt4 book ai didi

javascript - 将 tweenMax 导入 javascript

转载 作者:行者123 更新时间:2023-11-30 16:43:03 25 4
gpt4 key购买 nike

我正在尝试将 TweenMax 导入到我的 html 中,但我找不到我做错了什么......我已经完成了他们网站上所说的一切。

<!DOCTYPE html>
<html>
<head lang="en">
<link rel="stylesheet" href="css/PaginaFinal.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenMax.min.js"></script>
<meta charset="UTF-8">
<title></title>
</head>

我在这里进行初始化;

<body onload="init()" onclick="pointerDefault(event)">

<input type="text" id="search" name="procurarPalavra" onkeypress="premirEnter(event)">
<img src="search.png" alt="Smiley face" id="ok" onclick="enviarPalavra(event)" >
<img src="info.png" id="help">

<footer id="myFooter">

</footer>

脚本在这里

    function init() {
var search = document.getElementById("ok");
var text = document.getElementById("search");
var help = document.getElementById("help");
search.hover(function () {
TweenMax.to(this, .35, {width: "80", height: "80"})
}, function () {
TweenMax.to(this, .5, {width: "50", height: "50"})
})

text.hover(function () {
TweenMax.to(this, .35, {width: "80", height: "80"})
}, function () {
TweenMax.to(this, .5, {width: "50", height: "50"})
})

help.hover(function () {
TweenMax.to(this, .35, {width: "100", height: "100"})
}, function () {
TweenMax.to(this, .5, {width: "70", height: "70"})
})
}
</script>
</body>
</html>

最佳答案

在我看来你期待的是.hover()的 jQuery 在这里工作,但我没有看到任何导入的 jQuery。我可能是错的。

加载 jQuery 后,您可以将 search 和其他变量包装到一个 jQuery 对象中,例如$(search) 或者您可以首先使用 jQuery 获取它们,例如var search = $('#ok'); 而不是 var search = document.getElementById('ok');

或者,如果您希望避免使用 jQuery,您可以使用 addEventListener 方法监听 mouseovermouseout 事件。

关于javascript - 将 tweenMax 导入 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31653243/

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