超大的 WP api 调用
我安装了 WordPress 的超大插件,效果很好。我已将其设置为幻灯片自动播放,无需控制按钮。仍然工作得很好。
现在,我的客户希望某些 div(带有内容)与背景图像一起旋转。因此,当超大尺寸显示幻灯片 div1 中的第一张图像时,页面上将显示该图像。当幻灯片放映到第二张幻灯片时,div1 需要消失并显示 div2,依此类推。
目前,我可以通过侵入 supersized.js 并添加一个自定义函数来实现此目的,该函数在 nextSlide()
函数内传递当前幻灯片编号。
不过,我不想破解它,而是想以某种方式连接它。 类似: $.supersized.api.currentslide
或类似的内容。
这可能吗? 谢谢!
I installed the supersized plugin for wordpress, which is working great. I have set it up as a slideshow to autoplay without control buttons. Still working great.
Now, my client wants to have certain divs (with content) rotate alongside the background image. So, when supersized shows the first image in the slideshow div1 shows on the page. When the slideshow moves to the second slide, div1 needs to go away and show div2, and so on.
Currently, I can do this by hacking into the supersized.js and add a custom function that passes the current slide number inside the nextSlide()
function.
Instead of hacking it, though, I would like to hook into it somehow.
Something like: $.supersized.api.currentslide
or something similar.
Would this be possible at all?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此示例适合您的答案:
http://www.cirmiz.eu/supersized/
您需要使用 init 事件和 api.options 配置主题。
在此示例中,文件 supersized.shutter.min.js
需要 supersized 3.2.5 ¡重要!
This example fits with your Answer:
http://www.cirmiz.eu/supersized/
You need to configure a Theme with the init event and api.options.
In this example in the file supersized.shutter.min.js
Requires supersized 3.2.5 ¡important!
我认为你正在寻找这个变量
$.supersized.vars.current_slide
祝你好运
I think you are looking for this variable
$.supersized.vars.current_slide
good luck