Toggle navigation
首页
问答
IT问答
生活问答
电脑知识
百科
测评
html鼠标悬浮在按钮上,让按钮背景变色
发布于2022-01-13 08:28:10
8
个回答
网友回答
2022-01-13
鼠标放在button上改变颜色,HTML
button onmouseover=this.style.backgroundColor='red'; onmouseout=this.style.backgroundColor=''; 确定/button
网友回答
2022-01-13
value=“”,这是时候value的值 style=background:url('zc.jpg') no-repeat; width:180px; height:37px;把引号加上就可以了
网友回答
2022-01-13
我写了个例子给你,不肯定是不是你要实现的效果哈。(基于c#)
前端代码:
Grid
StackPanel
Button Background=Blue Name=btn Width=100 Height=100 Click=btn_Click/Button
TextBlock Name=txt Text=null HorizontalAlignment=Center/
/StackPanel
/Grid
后台代码
public partial class Page1 : Page
{
public Page1()
{
InitializeComponent();
}
string tag=string.Empty;
private void btn_Click(object sender, RoutedEventArgs e)
{
Button btn = sender as Button;
if (tag == string.Empty)
{
btn.Background = new SolidColorBrush(Colors.Red);
txt.Text = 0;
tag = 0;
}
else
{
btn.Background = new SolidColorBrush(Colors.Blue);
txt.Text = null;
tag = string.Empty;
}
}
}
网友回答
2022-01-13
利用a的四个伪类就行了 下面是四个伪类的介绍:
A的四个伪类
:link 未被访问前的样式表属性
:visited 其链接地址已被访问过时的样式表属性
:active 用户激活(在鼠标点击与释放之间发生的事件)时的样式表属性
:hover 鼠标悬停时hover
写法:a:link/:visited/:hover/:active 或者a:link/:visited/:active/:hover 顺序不能互换,有一个比较好记的口诀,就是:love -- hate
网友回答
2022-01-13
这个是j2se ~~~~CS结构的?
你是想问html的页面提示文字么?
加一个 input type=button value=按钮 title=提示文字 /
网友回答
2022-01-13
把下面代码直接保存为.html后缀名就可以了。。。记得给分就是了
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
html xmlns=
http://www.w3.org/1999/xhtml
head
meta http-equiv=Content-Type content=text/html; charset=gb2312 /
title无标题文档/title
/head
style
.adminbutton {border:#07A1EE 1px solid;background:#BFE7FA; height:22px;}
/style
bodybrbrbr
center
input type=button name=SubmitS value= 按 钮 class=adminbutton onMouseOut=this.style.backgroundColor='' onMouseOver=this.style.backgroundColor='#efefef' style=height:18px;padding-top:1px; width:
/center
/body
/html
网友回答
2022-01-13
在button属性里有个外观项,在里面选择你中意的样式后,在事件里面的
MouseMove里面添加 button.属性名 = 显示的内容; 试试看
网友回答
2022-01-13
导入import javax.swing.*;即可,不用导其它的外界包。
举例如下:
public class UI extends JFrame{
private JButton button;
public UI(){
button=new JButton();
button.setToolTipText(这是什么按钮?);
this.add(button);
this.setSize(200,300);
this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
this.setVisible(true);
}
public static void main(String[] args){
new UI();
}
}
IT问答最新文章
1
荣耀50有红外遥控功能吗
2
OPPO A93 特别卡怎么办?
3
输入的时候手机键盘不间断的快速闪烁是怎么回事,根本输入不了。怎么解决?
4
华为手机cpu型号麒麟930 935的有哪几款
5
iphone6开机白苹果后黑屏是怎么回事
6
万利达笔记本电脑怎么样?
7
万利达酷奔笔记本电脑怎么样?
8
谁知道万利达笔记本电脑下载学习资料网啊
9
window10安装字体为何不显示
10
苹果手机充电器可以和苹果电脑相互吗
相关阅读
1
html鼠标悬浮在按钮上,让按钮背景变色
2
电脑属性里外观的高级选项 设置后 再开机 又还原了 是为何?
3
苹果装WIN7bootcamp面板打不开,提示没有更改开启磁盘权限
回到
顶部