这是我的情况。
我有一个名为iframe.html的文件,其中包含图像幻灯片的代码。代码有点像
<html>
<head>
<!-- Have added title and js files (jquery, slideshow.js) etc. -->
</head>
<body>
<!-- Contains the images which are rendered as slidehow. -->
<!-- have hierarchy like 'div'
我使用的是在找到的弹性幻灯片插件。现在,它工作得很好,除非我尝试手动设置当前图像。
我的代码:
var wdornot_carousel = $("#wdornot_carousel").elastislide({
...
...
});
wdornot_carousel.setCurrent(5);
这样我就得到了错误:TypeError: this.$carousel is undefined on line 655
所以在js中,在651行,也就是在那个错误之前,我做了console.log(this);,它给了我一个对象,它有一个$carousel属性,引用了一个jqu
我正在为我正在构建的WordPress站点创建一个滑块。我试图构建的滑块将有4个总幻灯片/框架。每一帧都需要显示来自一个独特类别的最新帖子,或者显示来自一个独特类别的特写文章。我的意思是,4张幻灯片/框架中的每一张都代表一个单独的类别。
Slide/Frame 1 = Most Recent or Featured Post from Category A
Slide/Frame 2 = Most Recent or Featured Post from Category B
Slide/Frame 3 = Most Recent or Featured Post from Category