我正在使用fancybox来满足我的灯箱需求。
我需要打开raphael元素的链接(在此演示中为circle)。
通常你会创建一个链接并将其设置为样式:
<a id="test" href="ajax.html">Click Me</a></li>
<script type="text/javascript">
$(document).ready(function() {
$('#test').fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
为了使圆圈在其自身的javascript文件中复杂化,该文件在fancybox之后声明:
<script src="./fancybox/jquery.fancybox-1.3.1.pack.js" type="text/javascript"></script>
<script src="demo02.js" type="text/javascript" charset="utf-8"></script>
demo02.js的删节版本如下:
var Demo = {
initialize: function() {
var dim = this.getWindowDimensions();
this.paper = Raphael("canvas", dim.width, dim.height);
// set events
(document.onresize ? document : window).onresize = function() {
Demo.resize();
}
// add circle
var circle = this.paper.circle(150, 120, 100);
circle[0].style.cursor = "pointer";
circle.attr({
fill: "green",
stroke: "#333",
"stroke-width": 10,
href: "ajax.html",
});
},
...
所以我尝试了几种方法来设置链接的样式。一个天真的尝试是简单地将测试的id添加到attr。
我也尝试了以下内容:
$(circle.node).fancybox({
$('circle.node').fancybox({
$('#circle.node').fancybox({
$('#canvas.circle.node').fancybox({
$('#Demo.circle.node').fancybox({
它们都不起作用。该链接始终作为新链接打开,而不是在精美框中打开。
我做错了什么,我需要做些什么来纠正它?
答案 0 :(得分:1)
修正了它。
我没有使用href属性,而是直接从节点的onclick处理程序中调用fancybox给我这个:
var circle = this.paper.circle(150, 120, 100);
circle[0].style.cursor = "pointer";
circle.attr({
fill: "green",
stroke: "#333",
"stroke-width": 10,
});
circle.node.onclick = function () {
$.fancybox({
'href' : 'ajax.html',
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
if (circle.attr("fill") == "red") {
circle.attr("fill", "green");
} else {
circle.attr("fill", "red");
}
};
哪个有用!