Jump to content
php.lv forumi
  • 0

mousemove teksts


vitalja

Question

$(document).ready(function(){

$('.hover').mousemove( function(e){

 

var hovertext = $(this).attr('hovertext');

var offset = $(this).offset();

 

 

$('#hoverdiv').text(hovertext).show();

 

 

 

if(offset.left>100)

{

var wid = $('#hoverdiv').width();

$('#hoverdiv').css('top', e.pageY).css('left', e.pageX-wid-15);

}else

{

$('#hoverdiv').css('top', e.pageY).css('left', e.pageX+5);

}

})

.mouseout(function() {

 

$('#hoverdiv').hide();

 

 

});

 

 

 

 

 

});

 

 

 

meklēju kā var iepauzēt jquery izpildi (lai mousemove teksts nedaudz iekavējās) delay() neder, jo tas iepauzējot palaiž garām mouseout() finkciju. Būtībā šobrīd man ir sanācis tā, ka <div>...> izvade iepauzejas, un pat ja pele jau ir nobīdīta vienalga izvada div.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

PIrmkārt, nodalīt mouseenter atsevišķi no mousemove. Mousemove atstāt tikai pozīcijas mainīšanu. Visus mainīgos, kā izmēri, offseti, attribūti iekešot uz mouseenter, jo mousemove ir ļoti intensīvs process, un tur vajag pēc iespējas mazāk darbības.

par laika nobīdi - mouseenter ieliec

if (timer) { clearTimeout(timer); } // vajadzīgs, lai nedubultotu timeri
timer = setTimeout("show stuff", 1000);

un iekš mouseleave (labāk izmantot mouseleave, nevis mouseout) ieliec

if (timer) { clearTimeout(timer); }
// hide stuff

 

kešošanai neizmanto globālos variabļus, bet norādi šos ārpus eventu funkcijām ( var hovertext, offset, wid; ), bet iekšā ready funkcijā. Un eventu funkcijās tad nenorādīt šiem "var" priekšā

 

http://paste.php.lv/...lang=javascript

Edited by indoom
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...