如何使革命滑块文本可选?

时间:2015-11-25 21:38:21

标签: html css wordpress revolution-slider

我对旋转滑块有问题,我想让我在旋转滑块上添加的文本(图层)可以移动/可选如果这是正确的术语。我有一个手机号码,我希望人们能够根据需要复制它,但不幸的是,如果他们无法选择,那就不可能了。

有可能吗?如果是的话,希望有人能告诉我该怎么做,我无法在互联网上的任何地方找到这个问题。

5 个答案:

答案 0 :(得分:2)

这是针对Slider Revolution v6.0.2

enter image description here

  1. 可选层-切换 ON 以使文本可选。

enter image description here

请参阅“滑块革命”支持页面:https://www.themepunch.com/slider-revolution/module-defaults/

答案 1 :(得分:1)

这是Themepunch文档。

https://www.themepunch.com/faq/allow-for-caption-text-highlighting/

我希望这有帮助!

答案 2 :(得分:0)

在滑块旋转中,在“样式”选项卡上,单击向下箭头,如图所示:enter image description here

然后您将看到一个带有“灯泡”图标的选择框,从列表中选择打开,以使滑块处于预览状态时可以选择文本。

enter image description here

答案 3 :(得分:-1)

将此代码添加到style.css文件

.tp-caption{
    -moz-user-select: text;
    -khtml-user-select: text;
    -webkit-user-select: text;
    -o-user-select: text;
}

答案 4 :(得分:-1)

我问了支持。只需将其添加到Slider的自定义CSS

即可
.tp-caption.tp-layer-selectable{
-webkit-user-select: text !important; /* Chrome, Opera, Safari */
-moz-user-select: text !important; /* Firefox 2+ */
-ms-user-select: text !important; /* IE 10+ */
user-select: text !important; /* Standard syntax */
}