Heim >Web-Frontend >js-Tutorial >js Sliding Prompt Effect Code Sharing_Javascript-Kenntnisse
Das Beispiel in diesem Artikel teilt den js-Slide-Prompt-Effekt als Referenz. Der spezifische Inhalt ist wie folgt
Schöner Animationseffekt von js-Code; in der oberen rechten Ecke: Die Hintergrundfarbe ist rot, die Schriftfarbe ist weiß, schieben, um größer zu werden, nach oben bewegen und der langsame Farbverlauf verschwindet
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"); }
Der Front-End-Code ist im Hauptteil geschrieben:
<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>
Ich hoffe, dass dieser Artikel für alle hilfreich ist, die JavaScript-Programmierung lernen.