我正在嘗試根據光標位置更改文本。 它正在工作,但變化的靈敏度是快速的方式。 所以我想知道是否有一種方法來調整這一點,即變化不是那麼快。更改光標位置上的文本
var text = ['Orange', 'Banana', 'Strawberry', 'Melon']
$(document).mousemove(function(event) {
var randomItem = text[Math.floor(Math.random() * text.length)];
var div = $("#message");
div.stop().animate({
"opacity": "1"
}, 1, function() {
$(this).text(randomItem);
$(this).stop().animate({
"opacity": "1"
}, 1);
});
});
#message { font-size: 54px; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="message">Move the mouse.</div>
NNICE。那就是我正在尋找的東西。謝謝Idan :) – Dennis