如何使glyphicon作为提交按钮工作?

时间:2015-12-07 05:40:42

标签: html css asp.net input glyphicons

我有一个Submit类型的按钮,文本为edit,用于asp.net HTML.BeginForm中的POST方法。我想用glyphicon-edit替换它。如何实现与input相同的功能。我可以使用编辑按钮实现功能。我想使用glyphicon-edit

来实现相同的功能

HTML

<br />

<input type="submit" class="btn btn-default" name="Editing" value="Edit" />

<div class="circle">
  <div class="glyphicon glyphicon-edit"></div>
</div>

CSS {和glyphicon-edit的外观包含在小提琴here

4 个答案:

答案 0 :(得分:23)

您可以编写一个类型为submit的按钮,并在

中包装一个glyphicon
<button type="submit">
   <span class="glyphicon glyphicon-edit"></span>
</button>

修改:

  • 按钮样式将应用于glyphicon,但您可以远程显示默认按钮css属性(例如。background:none;border:none;padding:0;)并应用新样式
  • onclick边框出现? - outline:none应该解决大纲边界问题。

答案 1 :(得分:6)

使用上面的html和css:

Html:

<div class="circle">
   <button type="submit" class="submit-with-icon">
     <span class="glyphicon glyphicon-edit"></span>
   </button>
</div>

Css:

.circle {
  border-radius: 100%;
  border: 0.25em solid black;
  height: 50px;
  width: 50px;
}
.glyphicon.glyphicon-edit{
  font-size:28px;
  padding: 8px 3px 0 8px;
}

.submit-with-icon {
  background: transparent;
    border: 0px;
    padding: 0;
    outline: 0;
}

.circle:active {
  content: '';
  background-color: rgb(235, 235, 235);
  border-color: rgb(173, 173, 173);
}

我添加了一个名为submit-with-icon的课程,其中我删除了边框并使背景透明。

以下是fiddle

答案 2 :(得分:1)

从我所看到的,没有必要使用其他元素。使用<button>元素作为提交按钮,而不是<input>,并将glyphicon-edit类直接应用于它。

  • 根据需要设置悬停,对焦和活动状态的样式并删除默认焦点轮廓。

  • 字形垂直居中于line-height

实施例

.glyphicon.glyphicon-edit {
  font-size: 25px;
  line-height: 45px;
  border-radius: 50%;
  border: 3px solid black;
  height: 50px;
  width: 50px;
  background: none;
  transition: color .3s, background .3s;
  /*box-shadow helps soften the choppy circle*/
  box-shadow: 0 0 1px #000, inset 0 0 2px #000;
}
.glyphicon.glyphicon-edit:hover {
  background: #000;
  color: #FFF;
}
.glyphicon.glyphicon-edit:focus {
  border-color: blue;
  outline: none;
}
.glyphicon.glyphicon-edit:active {
  border-color: red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link href="https://jsfiddle.net/iamraviteja/DTcHh/14991/netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet" />
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" />




<button class="glyphicon glyphicon-edit" name="Editing" value="Edit"></button>

答案 3 :(得分:0)

试试这个:)

&#13;
&#13;
.circle {
  border-radius: 100%;
  border: 0.25em solid black;
  height: 50px;
  width: 50px;
}
.glyphicon.glyphicon-edit {
  font-size: 28px;
  padding: 8px 0 0 3px;
}
.circle button {
  background: none;
  border: none;
  outline: none;
}
&#13;
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>

<div class="circle">
  <button type="submit">
    <span class="glyphicon glyphicon-edit"></span>
  </button>
</div>
&#13;
&#13;
&#13;