My client need to have a dynamic slideshow but he wants his images protected. so obviously I can't use a JQuery slideshow :S .. he don't mind a screenshot because the slideshow won't be 开发者_如何学运维that big so the resolution won't be the same.
Now I'm thinking about a dynamic flash player .. but is it possible to have such a thing ? other options are also welcome =)
you can use flash with XML there are various slideshow example on internet one I found
http://www.flabell.com/flash/XML-Image-Slideshow-40
You could use a Jquery slideshow and just add the following function:
to target just the image files:
$('img').bind("contextmenu mousedown",function(){
return false;
});
or to target the whole site:
$(document).bind("contextmenu mousedown",function(){
return false;
});
精彩评论