在我的网站上,有一些项目图标在鼠标悬停时有一个图层,显示标题。
我想要的是在手机上查看网站时不断拥有该图层。
这段javascript代码显然处理了这种效果:
/* Set Default Text Color for all elements */
$(".ut-hover").each(function(index, element) {
var text_color = $(this).closest('.ut-portfolio-wrap').data('textcolor');
$(this).find(".ut-hover-layer").css({ "color" : text_color });
$(this).find(".ut-hover-layer").find('.portfolio-title').attr('style', 'color: '+text_color+' !important');
});
$('.ut-hover').on('mouseenter touchstart', function() {
var hover_color = $(this).closest('.ut-portfolio-wrap').data('hovercolor'),
hover_opacity = $(this).closest('.ut-portfolio-wrap').data('opacity');
$(this).find(".ut-hover-layer").css( "background" , "rgba(" + hover_color + "," + hover_opacity+ ")" );
$(this).find(".ut-hover-layer").css( "opacity" , 1 );
});
$('.ut-hover').on('mouseleave touchend', function() {
$(this).find(".ut-hover-layer").css( "opacity" , 0 );
});
包含文本的图层的css是“ut-hover-layer”
我需要修改该脚本,以便在移动屏幕上看到该网站时,“ut-hover-layer”在加载时可见并且始终保持不变,因此不应该将鼠标移到发生。
任何人都有解决方案来实现这一目标吗?
如果可以提供帮助,这里是网站的link
提前致谢!
答案 0 :(得分:0)
根据堆栈上的另一个答案(What is the best way to detect a mobile device in jQuery?)您应该检测显示您的页面的设备是智能手机,如果是,您应该将ut-hover-layers不透明度设置为1,如下所示:
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test( navigator.userAgent ) ) {
jQuery( '.ut-hover-layer' ).each( function() {
jQuery( this ).css( 'opacity', '1' ).css( 'background' , 'rgba( 242, 35, 244, 0.8 )' );
});
}
但是我认为如果您尝试以这种方式检测智能手机:
if( jQuery( window ).width() < 768 ) {
jQuery( '.ut-hover-layer' ).each( function() {
jQuery( this ).css( 'opacity', '1' ).css( 'background' , 'rgba( 242, 35, 244, 0.8 )' );
});
}
它仍然可以使用。
也是纯粹的js方式
if( document.body.clientWidth < 768 ) {
var elems = document.getElementsByClassName( 'ut-hover-layer' ),
i = 0;
for( ; i < elems.length; i += 1 ) {
elems[i].style.background = 'rgba( 242, 35, 244, 0.8 )';
elems[i].style.opacity = '1';
}
}
另一种选择是进行媒体查询并将其放入您的CSS:
@media screen and (max-width: 1024px) and (min-width: 481px)
.ut-hover-layer {
opacity: 1!important;
top: 50%;
background: rgba(242, 35, 244, 0.8);
}
}
但是你的代码中会有一些无用的处理程序。
我希望我能正确理解你,这会有所帮助。