如何将 Yoxview infoPanel 放在图像正下方
在 yoxview 中,我通过在 $(document).ready 语句中插入自定义选项来指定 #yoxview_infoPanel 应出现在图像框外部:
<script type="text/javascript">
$(document).ready(function(){
$(".yoxview").yoxview({
renderInfoExternally:"true",
});
});
</script>
但是,现在信息面板出现在页面的最底部。如何将信息面板置于图像正下方居中?
In yoxview, I specified that the #yoxview_infoPanel should appear outside the image box by inserting the custom options in the $(document).ready statement:
<script type="text/javascript">
$(document).ready(function(){
$(".yoxview").yoxview({
renderInfoExternally:"true",
});
});
</script>
However, now the info panel appear on the very bottom the page. How do I put the info panel below right below the image, centered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想知道您是否在比 1.5.2 新的 jQuery 版本中运行 YoxView?如果是的话,它确实会做出意想不到的事情。尝试返回 1.4 或 1.5,看看它是否正确响应。
I wonder if you're running YoxView in ab jQuery version newer than 1.5.2? If you are, it does do unexpected things. Try going back to 1.4 or 1.5 and see if it responds correctly.
从这篇文章:
https://drupal.org/node/1677038
看来 YoxView 可以与最近的 jQuery 配合使用版本如果您:
From this post:
https://drupal.org/node/1677038
it seems that YoxView works with recent jQuery versions if you: