最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Disable Default Save Image Option In Mobile - Stack Overflow

programmeradmin3浏览0评论

When I hover hold on an image on mobile following options appears:

  1. Save Image
  2. Open Image
  3. Open Image in new tab.

How can I disable these options?

I googled and got the below code which is not working

.disableSave {
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}

When I hover hold on an image on mobile following options appears:

  1. Save Image
  2. Open Image
  3. Open Image in new tab.

How can I disable these options?

I googled and got the below code which is not working

.disableSave {
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}
Share Improve this question edited Mar 23, 2017 at 13:26 morten.c 3,5155 gold badges42 silver badges47 bronze badges asked Oct 25, 2013 at 10:37 Sheldon CooperSheldon Cooper 2461 gold badge4 silver badges17 bronze badges 5
  • "on mobile" - What OS? What browser? – Thew Commented Oct 25, 2013 at 10:45
  • i use samsung grand.... android – Sheldon Cooper Commented Oct 25, 2013 at 10:51
  • 1 That answered none of my questions. You're using Samsung. So I figure you're using Android? What version of android? And on Android, do you use the stock android browser or something else? – Thew Commented Oct 25, 2013 at 10:53
  • i am looking for generalized solution not for particular android...........i gues above solution works for ios – Sheldon Cooper Commented Oct 25, 2013 at 11:03
  • I know, but what did you test it on? – Thew Commented Oct 25, 2013 at 11:09
Add a ment  | 

3 Answers 3

Reset to default 9

Simple solution.

For iOS, use the following:

.disableSave {
    -webkit-user-select:none;
    -webkit-touch-callout:none;
}

For Android, use:

oncontextmenu="return false;";

I used the following CSS and disabled image select + save in mobile and desktop browsers.

img {
  pointer-events: none;
}

Things like this are tricky, because when your phone / browser loads the page, it will download the images, e.g. user will have all the images in cache anyways, usually functions using right click can be disabled with JS, however there is no full-proof way of actually disabling right click functionality, on a phone however, you can set the image as background-image which basicly if you hold down on it, won't trigger a download, and since there is no developermode for phones, they can't simply inspect element either to get the image source (The exception to that are iOS devices when coupled with a mac using safari).

发布评论

评论列表(0)

  1. 暂无评论