javascript - Want to delay image following my mouse cursor -
$ (दस्तावेज़) .mousemove (function (e) {$ ("# butterfly")। देरी (90000 ); $ ("# तितली")। सीएसएस ({left: e.pageX, शीर्ष: ई.पेजीआई});}); कर्सर के बाद छवि में देरी कैसे बनाएं #butterfly "img id =" butterfly "तत्व है।
उपयोग करें, विलंब .css () के साथ काम नहीं करेगा। जैसा कि इसका उपयोग उन कार्यों के निष्पादन में देरी करने के लिए किया जाता है, जो इसे क्यू में आते हैं। $ (दस्तावेज़) .mousemove (function (e) {setTimeout (function () {$ ("# butterfly")। सीएसएस ({left: e.pageX, top: e.pageY});}, 90000);} );
Comments
Post a Comment