이 기사의 예에서는 리본 확장 효과를 얻기 위해 jQuery를 사용하여 웹 페이지 로딩 바의 로딩 애니메이션을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
여기서 소개하는 jQuery 리본 효과 웹 페이지 로딩 바 애니메이션은 꽤 창의적이라고 생각합니다. 어렵지는 않지만, 이러한 배경을 사용하여 로딩 로딩 바를 만든다고 생각하기는 쉽지 않습니다. 왜 이 일을 할 생각을 못했나요? 이 웹페이지의 로딩 바 효과는 jQuery 플러그인을 사용합니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-n-color-cha-web-loading-demo/
구체적인 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>页面初加载的动画</title> <style type="text/css"> body{margin:0;} .top_bg{height:5px;width:0;background-color:#093; background-image:url(images/colorbg.png);}/*如果你喜欢博主的那个彩带背景欢迎下载,直接把background:#f03换成背景*/ </style> <script src="jquery-1.7.2.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ //顶部背景动画 $(".top_bg").animate({ width: "100%" }, { queue: false, duration:4000 }); }) </script> </head> <body> <div class="top_bg"></div> </body> </html>
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.