У меня есть функция javascript (которая использует Рафаэля), которая нажимает на область выбора. При двойном щелчке эта функция должна добавить маркер (pin.png).
window.onload = function () {
var R = Raphael("paper", 500, 500);
var attr = {
fill: "#EEC7C3",
stroke: "#E0B6B2",
"stroke-width": 1,
"stroke-linejoin": "round"
};
var area = {};
area.Element1 = R.path("...").attr(attr);
area.Element2 = R.path("...").attr(attr);
...
area.Element63 = R.path("...").attr(attr);
var current = null;
$("#paper").ondblclick = function (e) {
var relativeX = e.pageX;
var relativeY = e.pageY;
R.image("pin.png", relativeX, relativeY, 22, 22);
};
for (var state in area) {
area[state].color = Raphael.getColor();
(function (st, state) {
st[0].active = 0;
st[0].style.cursor = "pointer";
st[0].onmouseover = function () {
current && area[current].animate({ fill: "#EEC7C3", stroke: "#E0B6B2" }, 500) && (document.getElementById(current).style.display = "");
st.animate({ fill: st.color, stroke: "#ccc" }, 500);
st.toFront();
R.safari();
document.getElementById(state).style.display = "block";
current = state;
};
st[0].onmouseout = function () {
if (this.active == 0)
st.animate({ fill: "#EEC7C3", stroke: "#E0B6B2" }, 500);
else
st.animate({ fill: "#C05219", stroke: "#E0B6B2" }, 500);
st.toFront();
R.safari();
};
st[0].onclick = function () {
st.animate({ fill: "#C05219", stroke: "#E0B6B2" }, 500);
st.toFront();
if (this.active == 0)
this.active = 1;
else
this.active = 0;
R.safari();
};
})(area[state], state);
}
};
А у меня проблема с разными браузерами:
- В Chrome он работает почти хорошо
- В Firefox (8.0) двойной щелчок не работает с элементами, на которые также можно нажать (area.Element1, [...], area.Element63). Двойной щелчок должен добавить маркер на место, на которое нажали.
- В IE (9) не работает ни щелчок, ни двойной щелчок. Даже событие onmouseout не работает в IE.
Я должен заставить его работать в Firefox и IE. Что я могу сделать, чтобы это работало - особенно в Firefox?
Любая помощь здесь очень ценится!