这是我的布局:
View All Students
时加载差异图像。src
属性时。$('img #bot-image-path ').slideDown(1000);
,但这似乎没有任何效果。我如何在jQuery中实现类似的功能?
这是我的实时结果:Fiddle
答案 0 :(得分:1)
也许使用以下内容?
[selector].show( speed, [callback] );
这会在“速度”ms上淡入图像。回调不是必要的。您可以在此处详细了解http://www.tutorialspoint.com/jquery/jquery-effects.htm。
编辑:此外,删除实际div id前面的'img'可能会有所帮助!
答案 1 :(得分:0)
I tried using $('img #bot-image-path ').slideDown(1000);, but that doesn't seem to take any effect.
$('img #bot-image-path ')
将在窗口中的任何图片中选择ID为#bot-image-path
的div,这将是无效的html。你可能只是指$('#bot-image-path')
而不是滑动......你可以用一个简单的例子(点击猫)异步地淡化2张图像: