|
|
||
IRC: irc://irc.opera.com/japanese <--Opera 日本語ユーザのためのIRCチャンネル。
上のがつながらない場合は irc://irc.se.opera.com/japanese
おもったより早かった.
バナーも変更.
Opera Web Browser | Faster & safer | Download the new Internet browsers free
記念してイベントも開かれるようです?
Twitter / opera users jp: 9.5 の正式リリースが秒読みに入ったようなのでOp ...
http://www.ustream.tv/channel/oreradio に変更された模様.
Canvas で色情報取得 - opera:hige - チーム俺等 のブックマークレット版
画像を開いて以下のブックマークレットを適用すると画像上のクリックした位置の色情報が取得できます.
javascript:(function(){if(window.location.href.match(/^.*\.(jpe?g|bmp|gif|png)$/i)){var ie=document.getElementsByTagName('img')[0];var io=new Image();io.src=ie.src;var canvas=document.createElement('canvas');canvas.width=io.width;canvas.height=io.height;var ctx=canvas.getContext('2d');ctx.drawImage(io,0,0,io.width,io.height);ie.parentNode.replaceChild(canvas, ie);var gctx=canvas.getContext('opera-2dgame');canvas.addEventListener('click',function(e){alert(gctx.getPixel(e.offsetX,e.offsetY));},false);}})();
見やすく.
javascript:(function(){ if(window.location.href.match(/^.*\.(jpe?g|bmp|gif|png)$/i)) { var ie = document.getElementsByTagName('img')[0]; var io = new Image(); io.src = ie.src; var canvas = document.createElement('canvas'); canvas.width = io.width; canvas.height = io.height; var ctx = canvas.getContext('2d'); ctx.drawImage(io, 0, 0, io.width, io.height); ie.parentNode.replaceChild(canvas, ie); var gctx = canvas.getContext('opera-2dgame'); canvas.addEventListener('click',function(e){ var x = e.offsetX; var y = e.offsetY; alert(gctx.getPixel(x, y)); },false); } })();