Maison > Article > interface Web > Exemple d'utilisation d'un contrôle jquery pouvant faire flotter un object_jquery
L'exemple de cet article décrit un contrôle jquery qui peut faire flotter un objet. Partagez-le avec tout le monde pour votre référence. Les détails sont les suivants :
le code js est le suivant :
(function($){ $.fn.scrolltip = function(){ $(this).each( function() { var obj = $(this); var objtop = obj.position().top; $(window).scroll(function(){ obj.css({ top:$(window).scrollTop()+objtop, position:'absolute' }); }); }); } })(jQuery);
Le code html est le suivant :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <script type="text/javascript" src="lib/jquery/jquery-1.3.2.js"></script> <script type="text/javascript" src="js/tip.js"></script> </script> <title>JQuery</title> </head> <body><div style="height:300px;background:#eee"><span id="colspon"></span></div> <br/> <br/> <br/> <div id="float" style="width:744px;height:34px;border:1px solid #C0DBF8;"></div> <div style="height:1000px;background:#eee"></div> </body> </html>
J'espère que cet article sera utile à la conception de la programmation jquery de chacun.