Is there any way to disable the screenshot to the particular website? image can't be save in any format

a 夏天 提交于 2019-12-08 11:25:46

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!