☆html里,如何去掉点击map里area的边框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了☆html里,如何去掉点击map里area的边框相关的知识,希望对你有一定的参考价值。

参考技术A <area shape="poly" coords="44,44,61,40,77,45,95,55,105,66,57,76,16,62,32,58,27,55,40,50" href="link_to.html" /</map</body</html★第一种方法是:在<img标签中加入
hidefocus="true"
<img src="pic.jpg" width="134" height="115" border="0" usemap="#Map" hidefocus="true" /
★第二种方法是:在需要去掉边框的<area标签中加入
onfocus="blur(this);"
(如果area区域较多,则每个都要加,那就显得有些麻烦了,可以用第一种方法)本回答被提问者和网友采纳

android开发笔记如何让ImageButton去掉白色边框和让ImageButton具有点击效果

这是我从网上学来的,怕忘记,遂记起来

如何让ImageButton去掉白色边框

android:background="#00000000"   //把背景变透明
放在那一段代码里呢?放在layout里面的.xml文件里

如:

<ImageButton
        android:id="@+id/down"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/surfaceView"
        android:layout_toRightOf="@+id/left"
        android:background="#00000000"       //放这里
        android:src="@drawable/id_down" />
效果自己试一下
然后说到让ImageButton具有点击效果,这个和上面就是最佳配合了

当然这个也有很多方法,我就觉得这个比较适合我

首先我们准备两张图片

(left)-----1    半透明

(left2)------2     不透明

也可以弄不同颜色

这里以1为默认显示,2是点击才显示的

把图片放进drawable-hdpi里面,新建文件夹来存放将要用的是文件drawable,然后在这个文件夹里面新建一个.xml文件id_left(名字可自己命名)。里面写上下面代码:

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
	<item android:state_pressed="true"
		android:drawable="@drawable/left2" />
	<item android:state_focused="true"
		android:drawable="@drawable/left2" />
	<item android:drawable="@drawable/left" />
</selector>

然后在layout里的.xml里面加上

<ImageButton
        android:id="@+id/left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/down"
        android:layout_alignLeft="@+id/surfaceView"
        android:background="#00000000"
        android:src="@drawable/id_left" />   //这里
然后就可以了,看效果图

这个是没有按的


这个是按下去的效果



举一反三其它也可以这样!!!


以上是关于☆html里,如何去掉点击map里area的边框的主要内容,如果未能解决你的问题,请参考以下文章

怎么去掉按钮的边框?

android开发笔记如何让ImageButton去掉白色边框和让ImageButton具有点击效果

如何去掉c# winform里 tabcontrol控件的边框

winform中按钮的被点击时的边框如何去掉?

HTML map标签area 属性,当鼠标移动到area上面的时候,对应的区域边框的的变大,前变色怎么办?谢谢啊

gridview如何去掉外边框