问题
I want to create a website, From there no one can steal my photos by screenshot or any kind of download method. if they try to screenshot the particular image also they unable to save any photo format. Is that possible?
Please Let Me Know...
Thanks!!!
回答1:
You cannot stop clients from screenshot-ting from their end. Possible duplicates : What are the ways to prevent users to take screenshot of a webpage?
回答2:
Preventing screenshots is not possible
回答3:
{(function() {
var startingTime = new Date().getTime();
// Load the script
var script = document.createElement("SCRIPT");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.type = 'text/javascript';
document.getElementsByTagName("head")[0].appendChild(script);
// Poll for jQuery to come into existance
var checkReady = function(callback) {
if (window.jQuery) {
callback(jQuery);
}
else {
window.setTimeout(function() { checkReady(callback); }, 20);
}
};
// Start polling(Add jquery logic here)
checkReady(function($) {
$(document).keyup(function(e){
if(e.keyCode == 44) return false;
});
});
})()
}
来源:https://stackoverflow.com/questions/33007905/is-there-any-way-to-disable-the-screenshot-to-the-particular-website-image-can