如何添加按钮链接?

时间:2016-12-01 19:47:49

标签: javascript html css

在有人跳我之前。我是网络管理员(CCNP)IA / CND(CISSP)类型。我声明要让每个人都知道我来自哪里。这可能是最简单的问题,但是如何为下面列出的按钮添加onclick并让它说... ancestry.com。我想我还会有其他按钮转到其他网站。建立我的第一个网站Family Xmas礼物和我去的学习。找到了一个模板网站并且时间很长。



/* Try This*/
$(".hover").mouseleave(
  function() {
    $(this).removeClass("hover");
  }
);

@import url(https://fonts.googleapis.com/css?family=Raleway:500);
 .snip1564 {
  background-color: #ffffff;
  border: none;
  border-bottom: 6px solid #029ebe;
  border-top: 6px solid #029ebe;
  color: #555;
  cursor: pointer;
  display: inline-block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 46px;
  letter-spacing: 3px;
  line-height: 34px;
  margin: 15px 40px;
  outline: none;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
}
.snip1564:before,
.snip1564:after {
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #ffffff;
  border-radius: 50%;
  top: -6px;
  content: "";
  height: 46px;
  position: absolute;
  width: 46px;
  border: 6px solid #ddd;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}
.snip1564:before {
  right: -23px;
  border-left-color: #029ebe;
  border-bottom-color: #029ebe;
}
.snip1564:after {
  left: -23px;
  border-right-color: #029ebe;
  border-top-color: #029ebe;
}
.snip1564:hover,
.snip1564.hover {
  background-color: #ffffff;
}
.snip1564:hover:before,
.snip1564.hover:before,
.snip1564:hover:after,
.snip1564.hover:after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
/* Try This*/

body {
  background-color: #212121;
  padding: 50px 0;
  text-align: center;
}

<button class="snip1564">ancestry.com</button>
<button class="snip1564 hover">Facebook</button>
<button class="snip1564">Youtube</button>
<button class="snip1564">Send a happy Holidays greeting</button>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

您可以通过两种方式进行操作,创建一个看起来像按钮的超链接,或者创建一个带有更改页面的点击处理程序的按钮。

您需要一些css来定义按钮的外观并将其分配给类

<a href='http://www.ancestry.com' class='button'>Ancestry</a>

<button class="snip1564" onclick='window.location="http://www.ancestry.com"'>
  ancestry.com
</button>

编辑:这是一个小提琴https://jsfiddle.net/qa0kco9b/1/