gpt4 book ai didi

Java ZK+Javascript JQuery Galleria IO 全屏模式

转载 作者:行者123 更新时间:2023-12-01 14:09:57 26 4
gpt4 key购买 nike

我正在使用Galleria JavaScript 插件我需要在 full Screen mode 中显示图像我已经检查了API并且有一个方法。

.enterFullscreen( [callback] )
returns Galleria
This will set the gallery in fullscreen mode. It will temporary manipulate some document styles and blow up the gallery to cover the browser screen. Note that it will only fill the browser window, not the client screen (javascript can’t do that).

API

我正在使用ZK Framework使用此代码响应按钮单击。

public void imageZoomer()
{
Clients.evalJavaScript("$('#galleria').data('galleria').enterFullscreen(function() {alert('full screen mode');})");
}

但什么也没发生我也尝试过使用

Clients.evalJavaScript("imageZoomer()"); 

和一个javascript像这样的功能

function imageZoomer()
{
alert('before');
$('#galleria').data('galleria').enterFullscreen(function(){alert('full screen mode');})
alert('after');
}

上面的函数被调用,但没有任何反应,但如果在 firebug 控制台上尝试此代码

$('#galleria').data('galleria').enterFullscreen(function(){alert('full screen mode');})

它工作顺利,我做错了,非常感谢。

最佳答案

最后我可以使用 xmhtml 解决我的问题ZK 中的按钮并响应 onClick使用 JQuery 的事件我无法使用 ZK button 解决我的问题这是我的代码,我希望我能真正帮助别人。

<div xmlns:h="xhtml">
<h:button onclick="$('#galleria').data('galleria').toggleFullscreen();">Full Screen. </h:button>
</div>

最诚挚的问候..

关于Java ZK+Javascript JQuery Galleria IO 全屏模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18603422/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com