首頁  >  文章  >  web前端  >  jQuery外掛ImageDrawer.js實作動態繪製圖片動畫(附源碼下載)_jquery

jQuery外掛ImageDrawer.js實作動態繪製圖片動畫(附源碼下載)_jquery

WBOY
WBOY原創
2016-05-16 15:13:321230瀏覽

ImageDrawer.js是一款可以實現動態繪製圖片動畫的jQuery外掛。透過ImageDrawer.js插件,你可以製作在頁面中繪製圖片的動態過程,你可以控制繪製動畫的持續時間等參數,非常有趣。

效果顯示       源碼下載

使用方法

使用此動態繪製圖片外掛程式需要在頁面中引入imagedrawer.css,jquery和imagedrawer.js檔案。

<link rel="stylesheet" href="css/imagedrawer.css" type="text/css"/>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/imagedrawer.js"></script>

HTML結構

在頁面中插入你需要繪製的圖片。

<div id="container">
<img id="example" src="img.jpg">
</div>

初始化外掛程式

在頁面DOM元素載入完畢之後,可以透過下面的方法來初始化該圖片繪製外掛程式。

$('div#container').drawImage();

設定參數

ImageDrawer.js圖片繪製外掛程式有以下一些可用的設定參數。

$(div#container).drawImge({
duration: 20, @number - seconds it's take to draw the entire picture
Instead of specifying the duration on the whole animation,
|| { it's also possible to set the duration of single drawing phases:
borderPencil : 9, @number - seconds it's take to draw the picture by using only the pencil for borders
pencilShades : 6, @number - seconds it's take to draw sharpest shades with black pencil
colorShades : 7.5, @number - seconds it's take to draw first, basic, vanish colors
fullColors : 7.5 @number - seconds it's take to define better all colors on the picture
},
background: '#949494', @string - background color for image while it's been drawing
callback: fn(), @function - function to execute after the last phase
pencil: {
height: '50px',
width : '50px',
src : './img/pencil.png' @string - path to the pencil image
}
});

duration:繪製動畫的持續時間。可以是整數,或是物件:

{
borderPencil : 9, 
pencilShades : 6, 
colorShades : 7.5, 
fullColors : 7.5 
}

borderPencil:繪製邊框所需的時間。
pencilShades:繪製黑白陰影部分所需的時間。
colorShades:繪製彩色陰影所需的時間。
fullColors;填滿顏色所需的時間。
background:畫布的背景顏色。

callback:回呼函數。

pencil:在畫布上方顯示的鉛筆小圖示。

以上所述是小編給大家介紹的jQuery外掛ImageDrawer.js實現動態繪製圖片動畫(附源碼下載)的相關知識,希望對大家有幫助!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn