经过数月的努力,Opera 于今天正式全面升级在中国的整个产品线,同时发布 Opera 桌面中国版,Opera Mini 中国版,Opera 中国新版网站。
详细改进列表:
1.全新的中国风格皮肤,快速拨号特效 2.支持双击标签关闭,默认开启 3.极速搜索,集成国内流行的搜索引擎 继续阅读
一个很实用的功能.用来缩放图片大小,在很多论坛都有看到这种效果.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Language" content="zh-cn" /> <title> new document </title> </head> <body> <img id="img" src="http://leotheme.cn/wp-content/themes/Maxthon/images/logo.png" /> <div id="output"></div> <script type="text/javascript"> function scrollImage(id,speed) //被缩放图象id与缩放速度 { var speed=speed?speed:1; var is_ff=navigator.userAgent.toLowerCase().indexOf('firefox'); var $=function(d){return document.getElementById(d)}; var zoom=function(event){ var event=event?event:window.event; if(is_ff>0){ $(id).style.width=$(id).offsetWidth-event.detail*speed+'px'; $("output").innerHTML=$(id).offsetWidth; //调试用,显示图象实时宽度,使用时删除 } else{ $(id).style.width=$(id).offsetWidth+event.wheelDelta/40*speed+'px'; $("output").innerHTML=$(id).offsetWidth; //调试用,显示图象实时宽度,使用时删除 } }; this.onload=function(){ if(is_ff>0) $("img").addEventListener("DOMMouseScroll",zoom,false); else $("img").onmousewheel=zoom; } } var img=new scrollImage("img",5); window.onload=function(){ img.onload(); } </script> </body> </html>
提示:你可以先修改部分代码再运行。
Opera 中国版开发代号已在内部确定,中文名朱雀,英文名Ibis,将基于 Opera 9.60 开发,采用 Presto 2.x 内核。 随着 Ibis 的确定,Opera 中国版正式进入开发阶段,将于三个月内发布。
Opera Ibis 将有如下改变:
1. 特别针对中国互联网修复网络应用及网页
2. 改善中文语言包的翻译 继续阅读