- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Tween 制作动画,动画完成后我想触发另一个操作来设置 iframe 的 src
。
我知道我需要使用 promise ,但我不是 100% 确定在这种情况下如何实现它,并且已经尝试了一段时间了。它适用于以下代码
Tween.to('#slideshow', 1, {
top: '50%'
});
setTimeout(function(){
$('.video-one').attr('src', 'https://www.youtube.com/embed/testOne');
$('.video-one').attr('src', 'https://www.youtube.com/embed/testOne');
}, 800)
但是当我尝试以下操作时它不起作用
Tween.to('#slideshow', 1, {
top: '50%'
}).done(function(){
$('.video-one').attr('src', 'https://www.youtube.com/embed/testOne');
$('.video-one').attr('src', 'https://www.youtube.com/embed/testOne');
});
最佳答案
郑重声明,这种场景是由 TweenLite 的创建者 GreenSock 的人员(可能是无意中)提供的。
GSAP 下载中与 TweenLite 捆绑在一起的是 jquery.gsap.js ,一个 jQuery 插件,他们介绍如下:
Good news for anyone using jQuery.animate() - the new jquery.gsap.js plugin allows you to have GSAP take control under the hood so that your animations perform better; no need to change any of your code. Plus GSAP adds numerous capabilities, allowing you to tween colors, 2D transforms (rotation, scaleX, scaleY, skewX, skewY, x, y), 3D transforms (rotationX, rotationY, z, perspective), backgroundPosition, boxShadow, and lots more. You can even animate to a different className!
安装 jquery.gsap.js 后,jQuery().animate()
将使用 TweenLite 制作动画,并且仍然允许链接 jQuery 的 .promise()
,从而提供您 promise 完成。
首先安装 jQuery、TweenMax(或 TweenLite 及其 CSS 插件)和 jquery.gsap.js 插件:
<script type="text/javascript" src="/path/to/jquery-x.y.z.min.js"></script>
<script type="text/javascript" src="/path/to/TweenMax.js"></script>
<script src="/path/to/jquery.gsap.js"></script>
现在,您可以利用 TweenMax/TweenLite 的优势编写标准 jQuery .animate()
,并且仍然返回 jQuery promise :
function doAnimation() {
return $("#myID").animate({
backgroundColor: "#FF0000", // color animation is not provided by raw jQuery.
width: "50%",
top: "100px",
ease: Power2.easeInOut // this is a GSAP easing function
}).promise();
}
doAnimation().then(function() {
console.log('animation complete');
});
关于javascript - 一旦补间完成动画就实现 promise ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39901449/
根据 Android docs ,activity生命周期如下: onCreate() onStart() onResume() onPause() onStop() onDestroy() 问题是,
我有一门类(class)有很多专栏,但这个问题只需要其中三个: ---------------------------------------- | start_date | start_time
给定在同一个 Tomcat 6 上运行的两个 Web 应用程序。如果您从一个应用程序到另一个应用程序进行 http 调用,Tomcat 是否会“短路”此调用,或者它会在调用之前一直在 interweb
我是一名优秀的程序员,十分优秀!