2012 02,29 16:02 |
|
jQueryのライブラリのdwImageProtector
http://davidwalsh.name/image-protector-plugin-for-jquery jQuery.fn.protectImage = function(settings) { settings = jQuery.extend({ image: 'blank.gif', zIndex: 10 }, settings); return this.each(function() { var position = $(this).position(); var height = $(this).height(); var width = $(this).width(); $('<img />').attr({ width: width, height: height, src: settings.image }).css({ border: '1px solid #f00', top: position.top, left: position.left, position: 'absolute', zIndex: settings.zIndex }).appendTo('body') }); }; 上記は設定を変更するとき 基本は、下の部分のみで $(window).bind('load', function() { $('img.protect').protectImage(); }); として 透明GIFは「blank.gif」という名前で保存し、htmlファイルと同じ階層に置く 保存禁止にしたい画像に、class属性protectを追記 <img src="画像パス" alt="" border="0" class="protect"> このライブラリは使える! PR |
|
コメント |
コメント投稿 |
|
忍者ブログ [PR] |