Css button pressing effect [duplicate]

2019-03-18 01:34发布

This question already has an answer here:

I have a button with a box-shadow that makes it look like it's floating, and I would like to make a pressing effect when I click on it:

Code(CSS):

#startBtn
{
    font-family: OpenSans;
    color: #FFFFFF;
    background-color: #00FF7C;
    border: 1px solid #00FF7C;
    border-radius: 5px;
    box-shadow: 0px 5px 0px #00823F;
}

Code(HTML):

<input type="button" id="startBtn" value="Let's begin">

Screenshot:

Button

3条回答
冷血范
2楼-- · 2019-03-18 02:16

IF the buttoms have a fixed height (as it looks) I would wrap the buttom into a div with that height and set the button to position absolute to create the right effect (moving it down) with:

#startBtn:active {
  box-shadow: 0 1px 0 #00823F;
    bottom:-4px;
}

JSFIDDLE

查看更多
相关推荐>>
3楼-- · 2019-03-18 02:17

You can use the CSS hover property:

#startBtn:hover { 
  /* your css code here */ 
}

Another option is to use button generators like buttongarage.in to generate your code for the button and the hover effect.

查看更多
倾城 Initia
4楼-- · 2019-03-18 02:20

Use :active pseudo class and change the box-shadow vertical offset value. Adjust the top value for the activated element with respect to the relatively positioned input with absolute parent.

.button {
  position: absolute;
}
#startBtn {
  font-family: OpenSans;
  color: #FFFFFF;
  background-color: #00FF7C;
  border: 1px solid #00FF7C;
  border-radius: 5px;
  box-shadow: 0px 5px 0px #00823F;
  position: relative;
  top: 0px;
  transition: all ease 0.3s;
}
#startBtn:active {
  box-shadow: 0 3px 0 #00823F;
  top: 3px;
}
<div class="button">
  <input type="button" id="startBtn" value="Let's begin">
</div>

查看更多
登录 后发表回答