map.zul

来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 45 行

ZUL
45
字号
<?xml version="1.0" encoding="UTF-8"?><!--map.zul{{IS_NOTE	Purpose:			Description:			History:		Tue Mar 28 15:49:35     2006, Created by tomyeh}}IS_NOTECopyright (C) 2006 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window title="map test">	<vbox>	No area:	<button label="change" onClick="changeImage(img1)"/>	<imagemap id="img1" src="/img/sun.jpg" onClick="what(event)"/>	Three area:	<button label="change" onClick="changeImage(img2)"/>	<imagemap id="img2" src="/img/sun.jpg" onClick="what(event)">		<area id="First" coords="0,0,50,50" tooltiptext="First"/>		<area id="Second" coords="50,0,100,50"/>		<area id="Third" coords="100,0,150,50"/>	</imagemap>	</vbox>	<zscript>	void what(MouseEvent evt) {		if (evt.area != null)			alert("Click area "+evt.area);		else			alert("Click ("+evt.x+", "+evt.y+")");	}	void changeImage(Imagemap img) {		img.src = img.src.endsWith(".png") ? "/img/sun.jpg": "/img/circle.png";	}	</zscript></window>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?