ホームページ >ウェブフロントエンド >jsチュートリアル >jsスライディングプロンプト効果コード共有_javascriptスキル
この記事の例では、参考のために JS のスライディング プロンプト効果を共有します。具体的な内容は次のとおりです。
右上隅の JS コードの美しいアニメーション効果: 背景色は赤、フォントの色は白、スライドして大きくなり、上に移動すると、ゆっくりとしたグラデーションが消えます
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"); }
フロントエンドのコードは本文に記述されます:
<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>
この記事が JavaScript プログラミングを学習するすべての人に役立つことを願っています。