您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關IE9下html5的使用方法是怎樣的,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
mvc是個好東西,為什么一入行的時候不去學一下,非要等到asp.net mvc出來了才去學;orm是個好東西,干嘛非要等到EF出來了才去學;html5是個好東西,干嘛非要等到IE9出來了才去學?......
——我想自己應該改掉這個壞毛病。
廢話不多說了。
需求:模仿dreamweaver里為圖片畫上錨點的功能,生成html代碼里的coords值的功能。
技術分析:直覺告訴我,html5 canvas可以勝任。
由于從來沒實質性接觸過canvas,只看過別人用canvas開發的demo,只好bing一下html5 canvas的教程咯。發現了下面的鏈接:http://kb.operachina.com/node/190
看完文檔寫代碼:
代碼分析:
1.1 html:要用一個圖片作底,canvas放在它上面以供畫圖
1.2 css:你起碼要位置放對、該透明的地方透明
1.3 javascript:鼠標事件要響應仨:mousedown,mousemove,mouseup
代碼如下:
<div id="container">
<img id="bg" width="390" height="560" src="https://cache.yisu.com/upload/information/20210312/296/133690.jpg" />
<canvas id="drewpanel" width="390" height="560">
<p>some info to tell the people whose broswer doesn't support html5</p>
</canvas>
</div>
有經驗的同學可能一看這html5代碼就知道這注定是個悲劇,當有img元素在canvas下面時,不管怎樣canvas就是不透明,忘記了canvas上可不可以畫上東西了,應該也是不行的。看來這canvas元素有“潔癖”,不愿和其他低級元素同流合污。就算我要退而求其次,作為cantainer的背景元素出現都不行。我的感覺是這個canvas可能不會對其他元素透明的。所以上面的代碼其實是錯誤的代碼...
那怎么樣才能實現類似photoshop里圖層的效果呢?那就是多弄幾個canvas元素,把上面的img換成canvas,然后把img繪制到這個canvas上,這樣canvas對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,這個任務非常簡單。
代碼如下:
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.sh2800.net/NavPic/20100917.jpg';
}, false);
//直接在文檔里拿下來的代碼 請注意為了opera和ie9 onload事件是必須要的,不然圖片會是一片空白,當然Chrome下不會這樣
以上就是IE9下html5的使用方法是怎樣的,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。