利用TweenMax針對HTML頁面製作動畫 – 基礎篇

馬老師在前一篇文章介紹過GreenSock的Tweening Platform在Flash中的應用後,接下來要跟各位分享「GreenSock Animation Platform」(GSAP),那麼多英文聽起來好像很複雜,就讓我為各位簡單介紹一下吧!

首先GreenSock一開始真的是針對Flash的Tween(補間)寫了許多好用的Class供設計師們使用,在不斷的更新和強化之後,目前已經出到v11(第十一版)了,但只要熟悉網路平台的朋友應該都知道,近幾年Flash在網頁上的應用,除了遊戲之外正在減少中,所以在GreenSock的v12(第十二版)中,加入了JavaScript的Class,也就是說我們可以在HTML網頁中使用TweenLite或TweenMax…等來製作動畫,也藉此版本把發展計劃的名稱從「GreenSock Tweening Platform」(GreenSock補間平台)更名為「GreenSock Animation Platform」(GreenSock動畫平台),主要是把「Tweening」換成「Animation 」,因為前者主要為Flash在使用的名詞,而後者就屬於比較廣義的「動畫」,所以未來就算你還在使用Flash的TweenMax,他也是屬於「GreenSock Animation Platform」中的一員了。

在網頁上GreenSock目前提供使用的有「TweenLite」、「TweenMax」、「TimelineLite」、「TimelineMax」這四個項目,雖比Flash來的少,不過也是最常用的幾項,相信可以幫助設計師們在不使用Flash的情形之下,製作許多不同凡響的動畫效果,另外關於這四項的差別也跟Flash版本一樣,之前有介紹過在這邊就不多提了,接下來就看一下簡單的使用方式吧。

首先跟Flash版本一樣,必須先下載備用載點)JS的Class,下載解壓縮後,會有以下的資料夾:

  • docs:參考文件。
  • examples:裡面有很多html的展示,對於想要了解本Class非常有幫助。
  • src:主要Class資料夾。

在網頁上主要使用的資料夾為src,而若是網頁要使用這個Class,跟Flash需要先import,不過HTML的指令如下:

<script src="src/minified/TweenMax.min.js"></script>

接下來就開始針對HTML和Javascript進行編輯,先看看我製作的第一個範例,下面是本範例整個網頁的程式碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>GreenSock HTML Tweening Basic</title>
    <script src="src/minified/TweenMax.min.js"></script>
    <script language="javascript">
        function scaleSmall() {
            var photo = document.getElementById("cat");
            TweenMax.to(photo, 2, {
                width: 300,
                height: 200
            });
        }
    </script>
</head>
<body style="font-size:13px; background-color:#FFF">
    <p style="text-align:center"><img src="cat.jpg" alt="波妞 大頭照" name="cat" width="600" height="400" id="cat"
            onClick="scaleSmall()"></p>
    <p style="text-align:center">請點擊貓咪照片</p>
</body>
</html>

基本上就是點擊後圖片縮小的效果,第10行即為TweenMax製作動畫的程式,當然利用TweenMax製作動畫,其中動畫類型也是重要的參數,第二個案例就加上了動畫類型,大家可以參考動畫變化的形式,下面是本範例整個網頁的程式碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>GreenSock HTMLTweening ease</title>
    <script src="src/minified/TweenMax.min.js"></script>
    <script language="javascript">
        function scaleSmall() {
            var photo = document.getElementById("cat");
            TweenMax.to(photo, 2, {
                width: 300,
                height: 200,
                ease: Elastic.easeOut
            });
        }
    </script>
</head>
<body style="font-size:13px; background-color:#FFF">
    <p style="text-align:center"><img src="cat.jpg" alt="波妞 大頭照" name="cat" width="600" height="400" id="cat"
            onClick="scaleSmall()"></p>
    <p style="text-align:center">請點擊貓咪照片</p>
</body>
</html>

除此之外,動畫變化的大小,當然也可以利用比例來計算,第三個範例就是用圖片寬度和高度比例來進行動畫縮小,各位也可以參考,下面是本範例整個網頁的程式碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>GreenSock HTMLTweening ease</title>
    <script src="src/minified/TweenMax.min.js"></script>
    <script language="javascript">
        function scaleSmall() {
            var photo = document.getElementById("cat");
            TweenMax.to(photo, 2, {
                width: photo.width * 0.8,
                height: photo.height * 0.8,
                ease: Elastic.easeOut
            });
        }
    </script>
</head>
<body style="font-size:13px; background-color:#FFF">
    <p style="text-align:center"><img src="cat.jpg" alt="波妞 大頭照" name="cat" width="600" height="400" id="cat"
            onClick="scaleSmall()"></p>
    <p style="text-align:center">請連續點擊貓咪照片</p>
</body>
</html>

當然在原先TweenMax可以使用的參數「onStart」、「onUpdate」、「onComplete」也一樣可以使用,第四個範例就加上了這部分的程式碼,下面是本範例整個網頁的程式碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>GreenSock HTMLTweening onCompleteSock HTMLTweening onComplete</title>
    <script src="src/minified/TweenMax.min.js"></script>
    <script language="javascript">
        function scaleSmall() {
            var photo = document.getElementById("cat");
            TweenMax.to(photo, 2, {
                width: 300,
                height: 200,
                ease: Elastic.easeOut,
                onComplete: okFn
            });
        }

        function okFn() {
            alert("動畫執行完畢");
        }
    </script>
</head>
<body style="font-size:13px; background-color:#FFF">
    <p style="text-align:center"><img src="cat.jpg" alt="波妞 大頭照" name="cat" width="600" height="400" id="cat"
            onClick="scaleSmall()"></p>
    <p style="text-align:center">請點擊貓咪照片</p>
</body>
</html>

看完了以上的範例,大家對於TweenMax在網頁中的使用應該有基本的認識,當然接下來就要看你的創意和HTML、Javascript、CSS的操作能力了,在這邊也製作一個較完整的範例供大家參考,下面是本範例整個網頁的程式碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>GreenSock HTMLTweening Sample 1</title>
    <style type="text/css">
        #yahoo {
            height: 240px;
            width: 560px;
            margin-right: auto;
            margin-left: auto;
            overflow: hidden;
        }

        /* yahoo Div 樣式(最外層) */
        #yahoo #pic {
            height: 210px;
            width: 2240px;
            overflow: hidden;
            left: 0px;
            position: relative;
        }

        /* 放置圖片Div樣式 */
        #yahoo #btn {
            text-align: right;
            float: left;
            height: 30px;
            width: 560px;
        }

        /* 下方文字連結Div */
        #yahoo #btn a {
            margin-left: 5px;
            padding-top: 2px;
            padding-right: 4px;
            padding-bottom: 2px;
            padding-left: 4px;
        }

        /* 下方文字連結樣式 */
    </style>
    <script src="src/minified/TweenMax.min.js"></script>
    <script language="javascript">
        function moveFn(no) {
            var banner = document.getElementById("pic");
            TweenMax.to(banner, 1, {
                css: {
                    left: (no - 1) * -560
                },
                ease: Quad.easeInOut
            });
        }
    </script>
</head>
<body style="font-size:13px; background-color:#FFF">
    <div id="yahoo">
        <div id="pic"><img src="yahoo/y1.jpg" id="p1" width="560" height="210"><img src="yahoo/y2.jpg" width="560"
                height="210"><img src="yahoo/y3.jpg" width="560" height="210"><img src="yahoo/y4.jpg" width="560"
                height="210"></div>
        <div id="btn"><a href="javascript:;" onClick="moveFn(1)">1</a><a href="javascript:;" onClick="moveFn(2)">2</a><a
                href="javascript:;" onClick="moveFn(3)">3</a><a href="javascript:;" onClick="moveFn(4)">4</a></div>
    </div>
</body>
</html>

在網頁上有TweenMax協助我們製作動畫,我們更可以把心思放在排版、樣式和內容上面,省去了撰寫計算動畫程式的時間,希望大家可以利用它做出很棒的作品!最後附上本範例的原始檔給大家參考。

You may also like...

4,427 Responses

  1. Good post. I learn something new and challenging on websites I stumbleupon on a daily basis. It’s always exciting to read through content from other writers and use a little something from other websites.

  2. Dsatda表示:

    buy feldene generic – generic exelon exelon 3mg drug

  3. Needed to create you the tiny note just to say thanks yet again for all the great secrets you’ve shared on this site. This is really particularly open-handed with you to provide unhampered all that most of us might have distributed for an ebook in making some bucks for their own end, most importantly given that you might well have done it if you ever considered necessary. The guidelines likewise acted as the fantastic way to comprehend many people have the identical zeal much like my very own to learn a whole lot more when it comes to this problem. I think there are some more pleasurable instances in the future for many who look over your blog. fitspresso reviews

  4. bangbros表示:

    Link exchange is nothing else however it is just placing the other person’s blog
    link on your page at suitable place and other person will also
    do same for you.

  5. Hi 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 problems finding one? Thanks a lot!

  6. Hi, Neat post. There is a problem together with your website in web explorer,
    may test this? IE still is the marketplace leader and a huge portion of other folks will pass over
    your fantastic writing due to this problem.

    Have a look at my webpage เว็บบทความ

  7. Gtyxul表示:

    buy dimenhydrinate pills – dimenhydrinate price buy risedronate 35mg

  8. sex videos表示:

    Hi, I want to subscribe for this weblog to take hottest updates, therefore where can i
    do it please help.

  9. Pncqte表示:

    vasotec 5mg for sale – doxazosin 1mg without prescription where to buy latanoprost without a prescription

  10. Wehmce表示:

    buy fulvicin 250 mg online – buy gemfibrozil pills lopid over the counter

  11. Webpage表示:

    Hello friends, its enormous piece of writing regarding tutoringand fully explained,
    keep it up all the time.

    My web-site :: Webpage

  12. One such software that has been generating buzz these days is the Lottery Defeater

  13. porn videos表示:

    Your way of explaining the whole thing in this post is truly fastidious, every one be able to simply know it, Thanks a
    lot.

  14. Rkifuo表示:

    buy dapagliflozin paypal – precose 25mg sale order precose 25mg generic

  15. Art表示:

    I will immediately snatch your rss as I can not find your email subscription link or e-newsletter service. Do you’ve any? Please let me realize in order that I may just subscribe. Thanks!

  16. Reefxa表示:

    zovirax ca – dydrogesterone medication how to buy duphaston

  17. bookmarked!!, I really like your website!

  18. This website is my inhalation, real fantastic style and perfect content material.

  19. Hi! Do you know if they make any plugins
    to help with SEO? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good success.
    If you know of any please share. Cheers! I saw similar article here:
    Escape room

  20. Nirvon表示:

    buy generic bactrim over the counter – order levetiracetam generic tobra 5mg price

  21. JamesTeact表示:

    купить диплом в красноярске
    посетить сайт

  22. Napczs表示:

    aciphex 10mg us – aciphex where to buy order domperidone 10mg generic

  23. Thanks for the update, how can I make is so that I receive an email sent to me when you publish a fresh post?

  24. Rujsuv表示:

    order bisacodyl 5 mg online – liv52 pill buy liv52 10mg

  25. ArthurFlilk表示:

    Больше интересной информации о строительстве и ремонте можно прочитать на сайте https://stroyka-gid.ru. Только самые популярные статьи и обзоры процесса ремонта помещений и строительства зданий.

  26. IgnacioSlima表示:

    pharmacie en ligne france livraison internationale: Medicaments en ligne livres en 24h – Pharmacie en ligne livraison Europe

  27. JuliusIntal表示:

    Achat mГ©dicament en ligne fiable: kamagra pas cher – Pharmacie Internationale en ligne

  28. IgnacioSlima表示:

    Viagra sans ordonnance pharmacie France: viagra sans ordonnance – Viagra sans ordonnance pharmacie France

  29. Robertdiz表示:

    vente de mГ©dicament en ligne: Levitra 20mg prix en pharmacie – pharmacie en ligne avec ordonnance

  30. Allenacurf表示:

    Viagra prix pharmacie paris: Viagra generique en pharmacie – Viagra homme sans ordonnance belgique

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。