是否有可能在jQuery中锁定mousedown,所以它的行为就像div一直被点击一样?我不知道我应该从哪里开始。
mousedown应该一直在背景中的iframe中。
iframe{
width:100vw;
height:100vh;
position: fixed;
z-index: 0;
}
.kram {
font-family: sans-serif;
font-style: bolder;
font-size: 35vh;
line-height: 30vh;
letter-spacing: 0.02em;
text-align: center;
width: 80vw;
height: 100vh;
left: 10vw;
right: 10vw;
position: fixed;
overflow: scroll;
color: #00FFD5;
z-index: 1;
}

<div class="kram">
HALLO HALLO<br>
HALLO HALLO<br>
HALLO HALLO<br>
HALLO HALLO<br>
</div>
<iframe src="https://clara.io/embed/c4b7eec0-e307-4424-a4c3-ef41d7daaf7a?renderer=webgl&timeline=false&autoplay=true&logo=false&header=false&tools=false&bgColor=FFFFFF&zoom=false" allowfullscreen></iframe>
&#13;
答案 0 :(得分:0)
您可以尝试此处https://stackoverflow.com/a/3719001/1221332
$('#selector').click(function(event){
$(this).unbind(event);
});