利用TweenMax針對HTML頁面製作動畫 – jQuery Mobile篇
在Dreamweaver5.5之後多了一個jQuery Mobile面板,主要是利用jQuery來製作一些行動裝置的元素,接下來這篇文章就利用Dreamweaver提供的幾項元素加上TweenMax來製作手機動畫頁面。
因為這篇文章應用到的動畫功能,依舊和前兩篇差不多,所以就直接看範例吧!首先,第一個範例是利用「jQuery 翻轉切換開關」來控制動畫的播放,除了可以從前面的連結看到這個範例之外,也因為這是特別針對行動裝置所設計的案例,大家也可以在手機輸入「goo.gl/LofiK」網址來觀賞,下面是本範例整個網頁的程式碼:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalabke=no, width=device-width" /> <title>貓咪欣賞</title> <link href="jquery-mobile/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"> <script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script> <script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script> <script src="src/minified/TweenMax.min.js"></script> <style type="text/css"> * { margin: 0px; padding: 0px; } #photo { text-align: center; } #selector { text-align: center; width: 50%; margin-left: auto; margin-right: auto; } </style> <script language="javascript"> var playNo = 1; /* 定義目前播放張數變數 */ function photoPlay() { var controler = document.getElementById("flipswitch"); if (controler.options[controler.selectedIndex].value == "on") { clock = setInterval(timer, 5000); } else { clearInterval(clock); } /* 設定每五秒執行timer函數 */ function timer() { var pic = document.getElementById("photo"); /* 利用pic紀錄畫面中ID為photo的元素 */ playNo++; /* 增加張數 */ if (playNo > 19) { playNo = 1; } /* 設定超過圖片張數後從頭播放 */ TweenMax.to(pic, 1, { css: { alpha: 0 }, ease: Expo.easeIn, onComplete: function () { pic.innerHTML = "<img src=photo/photo" + playNo + ".jpg width=300 height=200>"; TweenMax.to(pic, 1, { css: { alpha: 1 }, ease: Expo.easeOut }); } }); } } </script> </head> <body onLoad="photoPlay()"> <div data-role="page" id="page"> <div data-role="header"> <h1>貓咪欣賞</h1> </div> <div data-role="content"> <div id="photo"><img src="photo/photo1.jpg"></div> <div data-role="fieldcontain" id="selector"> <select name="flipswitch" id="flipswitch" onChange="photoPlay()" data-role="slider"> <option value="off">關閉</option> <option value="on" selected>開啟</option> </select> </div> </div> <div data-role="footer"> <h4>©2012 Copyright Stanley Ma Cloud Research.</h4> </div> </div> </body> </html>
接下來的第二個範例在程式上面會比較複雜,因為想要加強上一個範例的互動性,所以在同樣的範例上面增加「上一張」、「下一張」與「播放控制」的功能,可在手機輸入「goo.gl/GyAVt」網址觀賞,如果你仔細看的話,會發現這個範例中呼叫網頁元素的語法有改變,其實既然是利用jQuery來製作,本來就可以利用jQuery所提供呼叫網頁元素的指令來製作會比較方便,總之是因為有了下面這行語法,才可以利用這種方式來呼叫的喔!
<script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script>
下面是本範例整個網頁的程式碼:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalabke=no, width=device-width" /> <title>貓咪欣賞</title> <style type="text/css"> * { margin: 0px; padding: 0px; } #photo { text-align: center; } #selector { text-align: center; width: 50%; margin-left: auto; margin-right: auto; } #count { text-align: center; width: 50%; margin-left: auto; margin-right: auto; font-size: 12px; } </style> <link href="jquery-mobile/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"> <script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script> <script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script> <script src="src/minified/TweenMax.min.js"></script> <script language="javascript"> var playing = 1; /* 偵測目前是否為播放中的變數(1為播放0為暫停) */ var playNo = 1; /* 定義目前播放張數變數 */ /* 執行計時器 */ function photoPlay() { clock = setInterval(timer, 5000); } /* 計時執行函數 */ function timer() { playNo++; /* 增加張數 */ checkPlayNo() /* 呼叫檢查張數是否有誤的函數 */ photoSlide(); /* 呼叫動畫切換照片的函數 */ } /* 動畫切換照片的函數 */ function photoSlide() { var pic = $("#photo"); /* 利用pic紀錄畫面中ID為photo的元素 */ TweenMax.to(pic, 0.5, { css: { alpha: 0 }, ease: Expo.easeIn, onComplete: function () { pic.html("<img src=photo/photo" + playNo + ".jpg width=300 height=200>"); TweenMax.to(pic, 1, { css: { alpha: 1 }, ease: Expo.easeOut }); } }); $("#count").html(playNo + " / 19"); /* 更換顯示張數的文字 */ } /* 檢查張數是否有誤的函數 */ function checkPlayNo() { if (playNo > 19) { playNo = 1; } else if (playNo < 1) { playNo = 19; } } /* 前往上一張的函數 */ function prevFn() { clearInterval(clock); playNo--; checkPlayNo() photoSlide(); photoPlay(); } /* 前往下一張的函數 */ function nextFn() { clearInterval(clock); playNo++; checkPlayNo() photoSlide(); photoPlay(); } /* 播放控制函數 */ function controlFn() { if (playing == 1) { playing = 0; $("#controlBtn").html("播放") clearInterval(clock); } else if (playing == 0) { playing = 1; $("#controlBtn").html("暫停") clock = setInterval(timer, 5000); } } </script> </head> <body onLoad="photoPlay()"> <div data-role="page" id="page"> <div data-role="header"> <h1>貓咪欣賞</h1> </div> <div data-role="content"> <div id="photo"><img src="photo/photo1.jpg"></div> <div data-role="controlgroup" data-type="horizontal" id="selector"><a href="#" data-role="button" id="prevBtn" onClick="prevFn()">上一張</a><a href="#" data-role="button" onClick="controlFn()"><label id="controlBtn">暫停</label></a><a href="#" data-role="button" onClick="nextFn()">下一張</a></div> <div id="count">1 / 19</div> </div> <div data-role="footer"> <h4>©2012 Copyright Stanley Ma Cloud Research.</h4> </div> </div> </body> </html>
希望大家看過這幾篇「利用TweenMax針對HTML頁面製作動畫」的範例之後,可以更順利的創作出自己的網頁。
Your write-up was not just useful but additionally entertaining. I figured out a lot and had pleasurable executing it.
Thanks for the complete information. You helped me.
Your site is my go-to resource for staying up-to-date in this industry. https://blog.libero.it/wp/rimaakter/2024/01/30/you-want-shopping-the-web-to-save-little-money/
Your perseverance in your visitors is commendable. You really care. https://www.deviantart.com/rimaakter51/art/The-Most-Effective-Tips-For-Shopping-Online-1015548881
Right here is the right website for anyone who hopes
to understand this topic. You understand so much its almost tough to argue with you
(not that I actually will need to…HaHa). You definitely put
a fresh spin on a topic that’s been discussed for years. Great
stuff, just great!
Also visit my web blog เว็บวาไรตี้
Your insights on this subject are place-on. I could not concur more with all your Investigation.
Hurrah! Finally I got a blog from where I know how to in fact obtain helpful facts concerning my study and knowledge.
Hey! This is kind of off topic but I need some help from an established blog.
Is it very hard to set up your own blog? I’m not very techincal but I can figure things out pretty fast.
I’m thinking about setting up my own but I’m not sure where
to start. Do you have any points or suggestions? Thanks
My developer is trying to persuade me to move to .net from PHP.
I have always disliked the idea because of
the costs. But he’s tryiong none the less.
I’ve been using Movable-type on various websites for about a year and am worried about
switching to another platform. I have heard great things about blogengine.net.
Is there a way I can import all my wordpress content into it?
Any kind of help would be really appreciated!
Thank you for providing these details. 31745202
Write more, thats all I have to say. Literally, it seems
as though you relied on the video to make your point. You obviously know
what youre talking about, why throw away your intelligence on just posting videos to your
blog when you could be giving us something enlightening to read?
Dear Business Owner,
I’ve been thoroughly impressed by your commitment to quality and customer service – it truly sets you apart in the plumbing industry.I specialize in enhancing such reputations through tailored social media management.
One of my clients, Rush Rooter LLC, saw a 30% increase in bookings after my targeted campaign. I would love to replicate this success for you.
Let’s discuss how we can elevate your online presence. Are you available for a brief call next week?
Best regards,
Sebastian Akhlak
Hi There,
I have been following your locksmith company for a while now & I love your work, awesome job!
I specialize in finding new customers for locksmith companies. Recently, I helped Dustin, a California-based locksmith company owner to bring on 147 new customers & generate an extra $34,000 in revenue last month by providing locksmith services only! I’d love to do the same for you
Can you handle more customers? Let me know & can send over a few times to chat
P.S: If you are not interested just let me know so, I can stop sending emails to you
Kind Regards,
Nehal Khan
I take pleaqsure in, lead to I discovered
exactly what I waas having a lok for. Youu hve ended myy fouhr dday lengthny hunt!
Good Bleszs you man. Have a great day. Bye
It’s goping too bee end of mmine day, except bbefore endd
I am eading this enormous piece oof writing to increase myy
knowledge.
I amm now nnot certain thhe pkace you’re geting your information, but ggood topic.
I neees to spend some time finding outt more or figuring outt more.
Thankss foor fantastic info I uswd too be lookiing foor thgis information for mmy mission.
Wow, that’s what I was seeking for, what a data! existing here at this webpage, thanks admin of
this web site.
Attractive section of content. I jusst stumbled upoon your websote and
in accession capital to assrt that I acquire actually enjoyd account your bkog posts.
Anyy way I wilkl bee subscribing to your feeds aand even I achievement
yyou access consistently fast.
I ddo nott know whrther it’s jusst mee or iff
everybody else encountering izsues wioth yourr blog.
It seems like som off the text within your content aare rujning offf the
screen. Cann somebody eose please provide feedback annd leet me know iff this iss happening
to them aas well? This may bee a isssue with my browder because I’ve hhad thijs haappen previously.
Many thanks
The team at Sevens Legal, located in Southern California,
stands out as an outstanding criminal defense firm.
With Samantha Greene, an expert in criminal law, Sevens Legal brings decades of combined experience in the field of criminal law.
A primary factor why Sevens Legal is regarded as the best in San Diego is because of Samantha Greene’s specialization as a
Criminal Law Specialist by the California State Bar. This certification ensures
that clients are provided with highly skilled legal representation.
Additionally, the firm’s specialized method of utilizing insights from
ex-prosecutors with Sevens Legal’s current
defense tactics gives clients a significant edge in managing their cases.
Understanding the full scope of a client’s rights and
effective tactics for success is another forte of Sevens Legal.
Their attorneys strive to make sure that charges are reduced or even dropped entirely.
Covering various areas in San Diego, including Alta Vista,
Alvarado Estates, and Birdland, Sevens Legal
demonstrates an unwavering commitment to the people of San Diego.
In conclusion, the blend of knowledge, legal acumen,
and dedication to clients positions them as the top choice for anyone seeking a criminal defense attorney in San Diego.
Посмотреть фильм Воздух. Воздух где посмотреть. Воздух фильм.
Фильм Воздух 2024 года смотреть онлайн.
Воздух полный фильм.
You’re so awesome! I don’t think I’ve read through anything like this before.
So good to find someone with some unique thoughts on this topic.
Really.. many thanks for starting this up.
This website is something that’s needed on the internet, someone with
a little originality!
Also visit my web blog; blw99 (Eileen)
My developer is trying to convince me to move to .net from PHP.
I have always disliked the idea because of the costs.
But he’s tryiong none the less. I’ve been using WordPress on a number of websites for about a year
and am worried about switching to another platform.
I have heard very good things about blogengine.net.
Is there a way I can import all my wordpress content into it?
Any kind of help would be really appreciated!
Also visit my web page; blw99 – Wilson –
I’m really inspired together with your writing skills as neatly as with the format to your weblog.
Is this a paid subject matter or did you customize it
yourself? Anyway stay up the excellent quality writing, it’s uncommon to peer
a nice weblog like this one today..
Also visit my website :: blw99 [news-a24.koalawallop.net]
Hello there! I know this is kind of off topic but I was wondering if
you knew where I could locate a captcha plugin for my comment form?
I’m using the same blog platform as yours and I’m having difficulty finding one?
Thanks a lot!
My site: blw99, news-a141.koalawallop.net,
My brother recommended I might like this website.
He was entirely right. This post truly made my day. You cann’t imagine simply how much time I
had spent for this information! Thanks!
My web page :: blw99; Cassandra,
Admiring the time and effort you put into your
website and detailed information you provide. It’s good to come across a blog
every once in a while that isn’t the same old rehashed information. Wonderful read!
I’ve bookmarked your site and I’m adding your RSS feeds to my Google account.
Also visit my homepage: blw99 (Raquel)
It’s fantastic that you are getting thoughts from this paragraph as well as from our dialogue made here.
Also visit my web blog … blw99 (Petra)
Greetings! This is my 1st comment here so I just wanted to give a quick shout
out and say I truly enjoy reading through your articles.
Can you suggest any other blogs/websites/forums that deal with the same
subjects? Appreciate it!
Also visit my website; blw99 (https://thb-a504.iwinclub.com)
It’s appropriate time to make some plans for the long run and it is time
to be happy. I have learn this put up and if I may I wish
to recommend you few fascinating issues or advice. Maybe you can write next
articles regarding this article. I wish to read even more issues about it!
Stop by my web blog blw99