본 글의 예시는 참고용으로 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>
이 기사가 자바스크립트 프로그래밍을 배우는 모든 사람에게 도움이 되기를 바랍니다.