- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经能够使用按钮(图像映射器)设置 map 坐标,但在加载新图像时无法重新绑定(bind)到新坐标。
我有一张图像和映射,然后我用一个按钮更改图像。我还想更改映射坐标并为不同图像显示不同的映射。任何帮助都会很棒,谢谢
<body>
<img src="images/line 1.jpg" id = "boxx" alt="boxx" name="boxx" width="800" height="435" usemap="#box" />
<map name="box" id ="box" >
<area id="A" shape="rect" state= "A" coords="68,133,187,302" href="#" />
<area id="B" shape="rect" state= "B" coords="192,160,360,311" href="#" />
<area id="C" shape="rect" state= "C" coords="324,120,467,271" href="#" />
<area id="D" shape="rect" state= "D" coords="474,122,595,241" href="#" />
<area id="E" shape="rect" state= "E" coords="597,119,766,240" href="#" />
<area id="F" shape="rect" state= "F" coords="437,278,805,367" href="#" />
<area id="G" shape="rect" state= "A" coords="29,318,799,336" href="#" />
<area id="H" shape="rect" state= "B" coords="30,338,799,356" href="#" />
<area id="I" shape="rect" state= "C" coords="30,358,804,376" href="#" />
<area id="J" shape="rect" state= "D" coords="31,376,798,395" href="#" />
<area id="K" shape="rect" state= "E" coords="31,394,798,412" href="#" />
<area id="L" shape="rect" state= "F" coords="31,413,796,434" href="#" />
</map>
<input name="new" id = "b" value = "b"type="button" onclick = "change(this);" />
<input name="ne" id = "c" value = "c"type="button" onclick = "change(this);" />
<script>
function change(bu)
{
var box1 = document.getElementById("A");
var box2 = document.getElementById("B");
var box3 = document.getElementById("C");
var box4 = document.getElementById("D");
var box5 = document.getElementById("E");
var box6 = document.getElementById("F");
var box7 = document.getElementById("G");
var box8 = document.getElementById("H");
var box9 = document.getElementById("I");
var box10 = document.getElementById("J");
var box11= document.getElementById("K");
var box12= document.getElementById("L");
if ((bu.value) == "c")
{
var img = document.getElementById("boxx");
img.src = "images/Line 3.jpg";
box1.coords ="143,127,200,251";
box2.coords ="202,127,329,252";
box3.coords ="330,127,450,252";
box4.coords ="453,125,717,253";
box5.coords ="727,126,831,244";
box6.coords ="454,256,717,284";
box7.coords ="26,330,732,352";
box8.coords ="31,353,734,371";
box9.coords ="26,376,731,394";
box10.coords ="34,396,740,415";
box11.coords ="23,287,728,307";
box12.coords ="32,417,735,436";
}
//var button = document.getElementById("b");
var bb = bu.value;
alert(bb);
var button1 = "#" + bb;
alert (button1);
//image1.mapster('unbind');
$(button1).bind('click',function()
{
var image1 = $('#boxx');
alert (A.coords);
alert (G.coords);
alert("unbind");
var options = {
mapKey: 'state',
fillColor: 'd42e16',
fillOpacity: 0.3
};
//image1.mapster(options);
image1.mapster('rebind',options);
});
}
</script>
最佳答案
所以基本上你需要为不同的图像使用不同的 map ,并为不同的图像使用不同的 DIV 标签。这就是我解决这个问题的方法。
<div id = "l1" style="position: absolute; z-index:100; visibility: hidden; left: 150px; top: 109px;"><img src="line1.jpg" id = "box1" alt="box1" name="box1" width="800" max-height:"100%" usemap="#map1" />
<map name="map1" id ="map1" >
<area id="A" shape="rect" state= "A" coords="143,135,202,265" href="#" />
<area id="B" shape="rect" state= "B" coords="205,136,343,267" href="#" />
<area id="C" shape="rect" state= "C" coords="346,136,472,265" href="#" />
<area id="D" shape="rect" state= "D" coords="475,136,593,269" href="#" />
<area id="E" shape="rect" state= "E" coords="596,137,716,266" href="#" />
<area id="F" shape="rect" state= "F" coords="594,266,715,300" href="#" />
<area id="G" shape="rect" state= "A" coords="34,352,796,372" href="#" />
<area id="H" shape="rect" state= "B" coords="34,373,795,396" href="#" />
<area id="I" shape="rect" state= "C" coords="34,396,797,437" href="#" />
<area id="J" shape="rect" state= "D" coords="34,439,796,462" href="#" />
<area id="K" shape="rect" state= "E" coords="33,466,795,574" href="#" />
<area id="L" shape="rect" state= "F" coords="32,578,796,627" href="#" />
</map>
</div>
<div id = "L2" style="position: absolute; z-index:100; visibility: hidden; left: 150px; top: 109px;">
<img src="line2.jpg" id = "box2" alt="box2" name="box2" width="800" max-height:"100%" usemap="#map2" />
<map name="map2" id ="map2" >
<area id="A" shape="rect" state2= "A" coords="143,135,202,265" href="#" />
<area id="B" shape="rect" state2= "B" coords="202,135,331,266" href="#" />
<area id="C" shape="rect" state2= "C" coords="332,135,453,266" href="#" />
<area id="D" shape="rect" state2= "D" coords="453,134,714,264" href="#" />
<area id="E" shape="rect" state2= "E" coords="799,135,968,256" href="#" />
<area id="F" shape="rect" state2= "F" coords="455,268,713,298" href="#" />
<area id="G" shape="rect" state2= "A" coords="34,349,796,369" href="#" />
<area id="H" shape="rect" state2= "B" coords="33,371,797,409" href="#" />
<area id="I" shape="rect" state2= "C" coords="32,411,797,429" href="#" />
<area id="J" shape="rect" state2= "D" coords="33,431,797,549" href="#" />
<area id="K" shape="rect" state2= "E" coords="1036,324,1803,342" href="#" />
<area id="L" shape="rect" state2= "F" coords="34,553,797,598" href="#" />
</map>
</div>
if ((buttons.value) == "Line1")
{
Hide();
L1.style.visibility = "visible";
$('#Line1').bind('click',function()
{
var img1 = $('#box1');
var options = {
mapKey: 'state',
fillColor: 'd42e16',
fillOpacity: 0.3
};
img1.mapster(options);
});
}
else if ((buttons.value) == "Line2")
{
Hide();
L2.style.visibility = "visible";
$('#Line2').bind('click',function()
{
var image2 = $('#box2');
var options = {
mapKey: 'state2',
fillColor: 'd42e16',
fillOpacity: 0.3
};
image2.mapster(options);
});
关于javascript - 图像映射器 'rebind' 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27696140/
请看一下我的代码。 int main () { Program* allcommand = new Program; allcommand->addCommand("add", new
因此,当我遇到调试断言时,我正在编写代码。现在我很想知道为什么这段代码不起作用: for(Model::MeshMap::iterator it = obj1->GetMeshes().begin()
这是我上一个问题的延续 Group, Sum byType then get diff using Java streams . 按照建议,我应该作为单独的线程发布,而不是更新原始线程。 因此,通过我
我正在实现一些非常适合 map 的代码。但是,我要迭代的列表中有大量对象,所以我的问题是哪种方法是解决此问题的最佳方法: var stuff = $.map(listOfMyObjects, some
我正在尝试创建一个包含不同类的成员函数指针的映射。成员函数都具有相同的签名。为了做到这一点,我所有的类都继承了一个 Object 类,它只有默认构造函数、虚拟析构函数和一个虚拟 ToString()
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: how do you make a heterogeneous boost::map? 有可能在 C++ 中
我有一个 Mysql 查询,请检查以下内容: SELECT `tbl_classSubjects`.`classID` , `tbl_classSubjects`.`sectionID` , `tbl
抱歉,这可能是一个基本问题。 JNA直接映射和接口(interface)映射有什么区别? 我的解释是否正确: 直接映射 : 直接使用库对象(如 Java 中的静态 main) 接口(interface
在 Twitter's Scala school collections section ,它们显示了一个带有偏函数作为值的 Map: // timesTwo() was defined earlie
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .
据我了解,从 scala stdlib 声明一个映射并没有将其专门用于原始类型。我要的不是付出装箱/拆箱的代价,而是同时拥有scala map 的接口(interface)。一个明显的选择是使用 tr
如何为这样的 JSON 响应创建对象映射,它只是一个整数数组: [ 565195, 565309, 565261, 565515, 565292, 565281, 566346, 5
是否可以为 DTO 对象创建映射然后查询它们 而不是域?如果不解释为什么? 如果我需要几个 dtos 怎么办? DTos 是只读的 ID 由 NH 自动生成 将来这些 dtos 将设置映射到链接的 d
我有一个返回的函数(常规代码) [words: "one two", row: 23, col: 45] 在 Scala 中,我将上面更改为 Scala Map,但随后我被迫将其声明为 Map[Str
我有一组与 Vanilla 磅蛋糕烘焙相关的数据(200 行),具有 27 个特征,如下所示。标签caketaste是衡量烤蛋糕的好坏程度,由 bad(0) 定义, neutral(1) , good
我有试图映射到新代码的遗留代码。 OLD_PERSON pid sid name age NEW_PERSON pid sid fid age RESOLVE_PERSON pid fid statu
我有一个表,其中一个字段可以指向其他 3 个表之一中的外键,具体取决于鉴别器值是什么(Project、TimeKeep 或 CostCenter。通常这是用子类实现的,我想知道我有什么 注意子类名称与
我有一个类型 [ST s (Int, [Int])] 的绑定(bind)我正在尝试申请runST使用映射到每个元素,如下所示: name :: [ST s (Int, [Int])] --Of Cou
在我正在进行的项目中,我有以下实体:分析师、客户 和承包商。每个都继承自基类 User。 public abstract class User { public virtual int Id
我想知道是否可以在 Vim 中创建一个映射(对于普通模式),允许用户在映射执行之前输入。 我想为我最常用的 grep 命令创建一个快捷方式的映射。我希望命令允许输入我正在搜索的内容,然后在输入时执行。
我是一名优秀的程序员,十分优秀!