html5手机网站照片查看器,htmlayout仿picasa照片查看器效果 -凯发k8官方网
import win.ui;
/*dsg{{*/
var winform = win.form( text = "仿picasa照片查看器效果";exmode="toolwindow" )
/*}}*/
winform.transparent(true);//启用分层窗口以支持透明
winform.fullscreen(true);//全屏
import web.layout;//导入内置浏览器引擎
import web.layout.behavior.windowcommand;//导入标题栏按钮支持库
wblayout = web.layout(winform); //创建浏览器
wblayout.html = /**
r**/
wblayout.css = /**
html { background: none; } /* html背景透明 */
body, html { margin:0; padding:0; height:100%; width:100% }
body { margin:0; outline: none; background-color:rgba(0,0,0,0.7); }
/* 窗体控制按钮 */
#hl_ctrl_bar { max-width: max-intrinsic; padding-right: 5px; position: absolute; right:0; top:0; padding: 0; }
#hl_ctrl_bar span {
display: block; float: left; color: #fff; line-height: 22px; padding: 0 5px;
font-family: webdings; font-weight: bold; font-size: 13px;
behavior: windowcommand; /* 添加标题栏按钮交互行为 */
}
#hl_ctrl_bar #close {
width: 40px; height: 40px; padding:0; overflow: hidden;line-height: 28px;
text-indent: 16px; font-size: 14px;background-color:#666; border-radius:0 0 0 100%;
}
#hl_ctrl_bar span#close:hover { background-color: #da3610; }
#simulate_area[ready]{
background:#000;/* 设背景色后发光效果性能会好点 */
outline:15px glow #000 0px;
width:0; height:0;
}
/* 图像已下载完成 */
#simulate_area[src]:not(:incomplete){
top: 50%%; left: 50%%; right: 50%%; bottom: 50%%;
position: absolute;
/*初始化事件*/
assigned!:
self.start-animation( 0.9s ); /*启动动画*/
/*动画事件*/
animation-step!:
self::width = morph("cubic-in-out", 1px, self.min-intrinsic-width()),
self::height = morph("cubic-in-out", 1px, self.min-intrinsic-height() );
animation-end!:
self.ready = "true"; /* 动画完了再显示发光效果 */
}
**/
winform.updateimage = function(url){
var ltele = wblayout.queryele('#simulate_area'); //css选择器获取节点对象
ltele.src = url;//动态修改图像
}
//预览指定图像
winform.updateimage( "http://bbs.aardio.com/data/attachment/portal/201308/20/165515p11prhr96zp919xh.jpg" )
winform.show();
win.loopmessage();
总结
以上是凯发k8官方网为你收集整理的html5手机网站照片查看器,htmlayout仿picasa照片查看器效果的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: