如何向右滑动div内容..?

时间:2014-08-18 09:08:49

标签: javascript jquery html wordpress

我正在开发一个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示例那样的效果,内容只是没有任何效果。 那我怎样才能让幻灯片从左到右,从右到左...... 提前致谢

2 个答案:

答案 0 :(得分:0)

您的代码数据变量中的

未定义

data = "only for testing";
    $('#myDiv').html(data).hide().toggle(effect, options, duration);

小提琴:Check this

答案 1 :(得分:0)

好像你错过了jQuery UI library

jQuery UI 1.11.0

希望这会有所帮助!