很明显,我总是显示箭头和全屏图标。
问题是,当您按标准悬停图库时会显示图标。我不要这个标准,因为这样会导致手机无法开启全屏模式的问题。
目前我正在使用 Fotorama 4.4.4。
有人可以帮我解决这个问题吗?
现在你可以使用data-arrows="always"
将这部分从 CSS 中的某处放在您的样式中,之后fotorama.css
:
.fotorama__arr,
.fotorama__fullscreen-icon {
display: block !important;
opacity: 1 !important;
-webkit-transform: translate3d(0, 0, 0) !important;
-ms-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
}
.fotorama__arr--disabled {
opacity: .1 !important;
}
.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--video .fotorama__fullscreen-icon {
display: none !important;
}
小提琴:http: //jsfiddle.net/artpolikarpov/Txgbm/