gpt4 book ai didi

javascript - 无法从脚本标签 html 获取函数

转载 作者:行者123 更新时间:2023-12-03 06:09:10 24 4
gpt4 key购买 nike

对 html 非常陌生,但我一直在尝试获取函数 TweenTo(elem,dur,style)来自此网络脚本

  <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script>

这就是我想实现该功能的地方

 <img id="mainPic" src="mainPic.jpg" style="margin-top:70px;position:relative ! important" class="img-responsive" alt="Responsive image" onclick="startAnimation()">
<script type="text/javascript">
function startAnimation(){
TweenTo(document.getElementById('mainPic'),1,{width:600px})
}
</script>

我完全不明白为什么在图片上调用 onClick 时我无法运行此函数。感谢所有帮助,谢谢:D

最佳答案

阅读您正在使用的库的文档

https://greensock.com/tweenmax

function startAnimation(){
TweenMax.to(document.getElementById('mainPic'),1,{width:'600px'})
}

关于javascript - 无法从脚本标签 html 获取函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39402558/

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