开发者

Dynamic Slideshow

开发者 https://www.devze.com 2023-03-24 20:03 出处:网络
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 开发者_如何

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;
});
0

精彩评论

暂无评论...
验证码 换一张
取 消