作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 SuperSized jQuery 插件(文档:http://buildinternet.com/project/supersized/docs.html#theme-after)上使用 afterAnimation
事件,但无法触发它。
代码(示例):
$.supersized({
//Functionality
slideshow : 1,
autoplay : 1,
start_slide : 1,
stop_loop : 0,
random : 0,
slide_interval : 3000,
transition : 6,
transition_speed : 1200,
// .. removed for clarity
//Theme Options
progress_bar : 1,
mouse_scrub : 0,
// This is where i'm trying to call afterAnimation()
afterAnimation : function() {
console.log('blech');
}}
});
任何指导将不胜感激!
最佳答案
事实证明我很接近。
在supersized初始化之后,你可以这样做:
theme.afterAnimation = function() {
console.log('animate');
};
关于javascript - jQuery 超大 AfterAnimation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19369470/
我正在尝试在 SuperSized jQuery 插件(文档:http://buildinternet.com/project/supersized/docs.html#theme-after)上使用
我是一名优秀的程序员,十分优秀!