為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴
發(fā)表日期:2019-09 文章編輯:小燈 瀏覽次數(shù):4583
越來(lái)越多的人在學(xué)習(xí)研究?Canvas,然后使用?Canvas 制作各種各樣的動(dòng)畫(huà)。為了驗(yàn)證 Canvas 動(dòng)畫(huà)的可用性,我特意制作了一些 demo,分享給大家!
下面我們一起來(lái)進(jìn)入今天的學(xué)習(xí)內(nèi)容,Canvas圖片水平鏡像翻轉(zhuǎn)效果。
該效果的最終運(yùn)行截圖如下:
而相關(guān)的實(shí)現(xiàn)代碼非常簡(jiǎn)潔,總共不超過(guò)100行。
HTML 實(shí)現(xiàn)代碼如下:
<canvas width="256" height="192"></canvas>
相關(guān) JavaScript 代碼如下:
<script src="animation.js"></script><script>// 截取自https://github.com/zhangxinxu/Tween/blob/master/tween.jsvar Tween = {Quad: {easeInOut: function(t, b, c, d) {if ((t /= d / 2) < 1) return c / 2 * t * t + b;return -c / 2 * ((--t) * (t-2) - 1) + b;}}};// canvas 2d上下文獲取var canvas = document.querySelector('canvas');var context = canvas.getContext('2d');// 下面是一開(kāi)始圖片呈現(xiàn)的處理方法var strImgUrl = 'mm1.jpg';var eleImg = document.createElement('img');eleImg.origin = '';eleImg.onload = function () {context.drawImage(this, 0, 0);};eleImg.src = strImgUrl;// 水平翻轉(zhuǎn)動(dòng)畫(huà) www.xttblog.comvar loop = 1;var flipX = function () {// 緩動(dòng)執(zhí)行API// Math.animation(form, to, duration, easing, callback);Math.animation(1 * loop, -1 * loop, 600, 'Quad.easeInOut', function (value, isEnding) {context.clearRect(0, 0, canvas.width, canvas.height);context.translate(canvas.width / 2 - canvas.width * value / 2, 0);context.scale(value, 1);context.drawImage(eleImg, 0, 0);// 坐標(biāo)參考還原context.setTransform(1, 0, 0, 1, 0, 0);if (isEnding) {loop = -1 * loop;}});};// 點(diǎn)擊畫(huà)布水平動(dòng)畫(huà)翻轉(zhuǎn)canvas.addEventListener('click', flipX);</script>
以上就是關(guān)于Canvas上實(shí)現(xiàn)元素圖片鏡像翻轉(zhuǎn)動(dòng)畫(huà)的實(shí)現(xiàn)。
日期:2019-09 瀏覽次數(shù):6829
日期:2019-09 瀏覽次數(shù):4697
日期:2019-09 瀏覽次數(shù):5509
日期:2019-09 瀏覽次數(shù):10733
日期:2019-09 瀏覽次數(shù):10775
日期:2019-09 瀏覽次數(shù):4484
日期:2019-09 瀏覽次數(shù):4078
日期:2019-09 瀏覽次數(shù):3893
日期:2019-09 瀏覽次數(shù):3460
日期:2019-09 瀏覽次數(shù):4193
日期:2019-09 瀏覽次數(shù):7915
日期:2019-09 瀏覽次數(shù):3723
日期:2019-09 瀏覽次數(shù):4242
日期:2019-09 瀏覽次數(shù):3745
日期:2019-09 瀏覽次數(shù):3890
日期:2019-09 瀏覽次數(shù):4176
日期:2019-09 瀏覽次數(shù):5759
日期:2019-09 瀏覽次數(shù):3442
日期:2019-09 瀏覽次數(shù):4489
日期:2019-09 瀏覽次數(shù):3945
日期:2019-09 瀏覽次數(shù):4182
日期:2019-09 瀏覽次數(shù):4221
日期:2019-09 瀏覽次數(shù):3554
日期:2019-09 瀏覽次數(shù):4378
日期:2019-09 瀏覽次數(shù):5485
日期:2019-09 瀏覽次數(shù):5333
日期:2019-09 瀏覽次數(shù):3628
日期:2019-09 瀏覽次數(shù):8991
日期:2019-09 瀏覽次數(shù):4582
日期:2019-09 瀏覽次數(shù):3925
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.