4

我正在更改与 Jquery 1.4 一起使用的脚本(在 www.dynamicdrive.com 上找到),因此我可以在 Drupal 7 中使用它。我的版本位于http://screamingsilence.be/js/touchGallery/

一切运行良好,但是当我在我的 Android 平板电脑/智能手机上查看它时,图像被选中,看起来不太漂亮。

我试过这段代码,但这没有帮助:

$('img').attr('unselectable','on').bind('selectstart', function(){ return false; })
4

1 回答 1

1

在图像父级/容器上应用以下 css 样式:

-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;

希望有帮助。

于 2013-10-18T14:19:58.673 回答