L'exemple de cet article partage l'effet d'invite coulissante js pour votre référence. Le contenu spécifique est le suivant
Code JS bel effet d'animation ; dans le coin supérieur droit : la couleur d'arrière-plan est rouge, la couleur de la police est blanche, glissez pour agrandir, montez et le dégradé lent disparaît
function tishi() { $("#tishi").attr("style", "border: 1px solid #000;position: absolute; z-index: 10; width:200px; height: 30px;color:white;background-color:Red;border-radius:25px;-moz-border-radius:25px; text-align:center;left:70%; top:10%; display: none"); $("#tishi").show().animate({ width: '300px', height: '37px', top: '-=10px' , opacity: '0.8' }, "slow"); $("#tishi").show().animate({ top: '-=10px' , opacity: '0.6' }, "slow"); $("#tishi").show().animate({ top: '-=10px' , opacity: '0.4' }, "slow"); $("#tishi").show().animate({ top: '-=10px' , opacity: '0.2' }, "slow"); $("#tishi").show().animate({ top: '-=10px' , opacity: '0.0' }, "slow"); }
Le code front-end est écrit dans le corps :
<div id="tishi" style="border: 1px solid #000; position: absolute; z-index: 10; width:200px; height: 30px;color:white; background-color:Red;border-radius:25px; -moz-border-radius:25px; /* 老的 Firefox */ text-align:center;left:70%; top: 10%; display: none">请完善信息</div>
J'espère que cet article sera utile à tous ceux qui apprennent la programmation JavaScript.