css 除非单击地图,否则禁用嵌入式Google地图上的滚轮。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 除非单击地图,否则禁用嵌入式Google地图上的滚轮。相关的知识,希望对你有一定的参考价值。

// Disable the scroll wheeling on embedded Google Maps unless the map is clicked on
$( '.map-container' ).on( 'click', function() {
    $( '.map-container' ).find( 'iframe' ).css( 'pointer-events', 'auto' );
});

$( '.map-container' ).mouseleave( function() {
    $( '.map-container' ).find( 'iframe' ).css( 'pointer-events', 'none' );
});
/* Disable the scroll wheeling on embedded Google Maps */
.map-container iframe {
	pointer-events: none;
}

以上是关于css 除非单击地图,否则禁用嵌入式Google地图上的滚轮。的主要内容,如果未能解决你的问题,请参考以下文章