A new version of slideView plugin and imgDesc plugin are avaliable now!
See more detail in http://pagetalks.com/2009/03/09/jquery-slideview-plugin.html
and http://pagetalks.com/2008/08/29/jquery-imgdesc-plugin.html
See more detail in http://pagetalks.com/2009/03/09/jquery-slideview-plugin.html
and http://pagetalks.com/2008/08/29/jquery-imgdesc-plugin.html
I Spent a whole day fixing bugs and beautify the UI. They now works much better than the previous versions.
See a demo of slideView at http://pagetalks.com/share/slideView;
A demo of imgDesc is accessible in the original post.
Comments are welcome!
slideview插件的新版本出来了!到这里看更多信息:http://pagetalks.com/2009/03/09/jquery-slideview-plugin.html 以及 http://pagetalks.com/2008/08/29/jquery-imgdesc-plugin.html
我花了一整天时间修补bug以及美化用户界面,这两个插件现在会看起来好很多。
SlideView的演示:http://pagetalks.com/share/slideView
imgDesc的演示在上面的发布链接内
欢迎大家留下意见!









2 Comments
Hello
I am using your script slideview, but I need to know how to do to be loading images at random, is this possible?
A greeting and thanks
My email is rmunoz@inoffcomunicacion.com
what do you mean by “random”?
you wanna alter the sequence of the XHTML stream?
before call the slideview method, stir the sequence:
var $slide = $(“ul.slideView”);
var $items = $(“ul.slideView li”);
var length = $items.length;
$items.each(function(index) {
var seed = 0;
do { seed = Math.floor(Math.random()*(length-1)); }
while(seed==index);
$(this).insertAfter($items.eq(seed));
});
$(“#slideshow”).slideView();
this is a good idea, i’ll include this option in next release!