mvc是個(gè)好東西,為什么一入行的時(shí)候不去學(xué)一下,非要等到asp.net mvc出來(lái)了才去學(xué);orm是個(gè)好東西,干嘛非要等到EF出來(lái)了才去學(xué);html5是個(gè)好東西,干嘛非要等到IE9出來(lái)了才去學(xué)?......
——我想自己應(yīng)該改掉這個(gè)壞毛病。
廢話不多說(shuō)了。
需求:模仿dreamweaver里為圖片畫(huà)上錨點(diǎn)的功能,生成html代碼里的coords值的功能。
技術(shù)分析:直覺(jué)告訴我,html5 canvas可以勝任。
由于從來(lái)沒(méi)實(shí)質(zhì)性接觸過(guò)canvas,只看過(guò)別人用canvas開(kāi)發(fā)的demo,只好bing一下html5 canvas的教程咯。發(fā)現(xiàn)了下面的鏈接:http://kb.operachina.com/node/190
看完文檔寫(xiě)代碼:
代碼分析:
1.1 html:要用一個(gè)圖片作底,canvas放在它上面以供畫(huà)圖
1.2 css:你起碼要位置放對(duì)、該透明的地方透明
1.3 javascript:鼠標(biāo)事件要響應(yīng)仨:mousedown,mousemove,mouseup
<div id="container">
<img id="bg" width="390" height="560" src="http://www.sh1800.net/NavPic/20100917.jpg" />
<canvas id="drewpanel" width="390" height="560">
<p>some info to tell the people whose broswer doesn't support html5</p>
</canvas>
</div>
有經(jīng)驗(yàn)的同學(xué)可能一看這html5代碼就知道這注定是個(gè)悲劇,當(dāng)有img元素在canvas下面時(shí),不管怎樣canvas就是不透明,忘記了canvas上可不可以畫(huà)上東西了,應(yīng)該也是不行的。看來(lái)這canvas元素有“潔癖”,不愿和其他低級(jí)元素同流合污。就算我要退而求其次,作為cantainer的背景元素出現(xiàn)都不行。我的感覺(jué)是這個(gè)canvas可能不會(huì)對(duì)其他元素透明的。所以上面的代碼其實(shí)是錯(cuò)誤的代碼...
那怎么樣才能實(shí)現(xiàn)類(lèi)似photoshop里圖層的效果呢?那就是多弄幾個(gè)canvas元素,把上面的img換成canvas,然后把img繪制到這個(gè)canvas上,這樣canvas對(duì)canvas就是透明的了。哎...代碼如下:
<div id="container">
<canvas id="bg" width="390" height="560"></canvas>
<canvas id="drewpanel" width="390" height="560">
<p>some info to tell the people whose broswer doesn't support html5</p>
</canvas>
</div>
好了html算是搞定了,接下去就是往canvas上繪圖,借助于javascript,這個(gè)任務(wù)非常簡(jiǎn)單。
window.addEventListener('load', function () {
// Get the canvas element.
var elem = document.getElementById('bg');
if (!elem || !elem.getContext) {
return;
}
// Get the canvas 2d context.
var context = elem.getContext('2d');
if (!context || !context.drawImage) {
return;
}
// Create a new image.
var img = new Image();
// Once it's loaded draw the image on the canvas.
img.addEventListener('load', function () {
// Original resolution: x, y.
context.drawImage(this, 0, 0);
// Now resize the image: x, y, w, h.
context.drawImage(this, 160, 0, 120, 70);
// Crop and resize the image: sx, sy, sw, sh, dx, dy, dw, dh.
context.drawImage(this, 8, 20, 140, 50, 0, 150, 350, 70);
}, false);
img.src = 'http://www.sh1800.net/NavPic/20100917.jpg';
}, false);
//直接在文檔里拿下來(lái)的代碼 請(qǐng)注意為了opera和ie9 onload事件是必須要的,不然圖片會(huì)是一片空白,當(dāng)然Chrome下不會(huì)這樣
未完待續(xù)....
原文地址 http://www.cnblogs.com/ice6/archive/2010/09/18/1830020.html