我正在开发一个wordpress
插件,我必须从左到右,从右到左移动滑块中的内容。
我只是尝试了:
var effect = 'slide';
// Set the options for the effect type chosen
var options = { direction: 'right' };
// Set the duration (default: 400 milliseconds)
var duration = 700;
jQuery("#letsee").html(data).hide().toggle(effect, options, duration);
参见参考jsfiddle
那么我应该怎么做才能让它运行起来。我正在申请这个以回应ajax。
问题:没有像jsfiddle示例那样的效果,内容只是没有任何效果。 那我怎样才能让幻灯片从左到右,从右到左...... 提前致谢
答案 0 :(得分:0)
未定义
data = "only for testing";
$('#myDiv').html(data).hide().toggle(effect, options, duration);
小提琴:Check this
答案 1 :(得分:0)