5

我有一个如下所示的 CSS 按钮:

在此处输入图像描述

由以下 CSS 代码组成:

.Button{
 color: #333;
border: 1px solid orange;
border-bottom: 5px solid orange;
background-color: #fff;
font-size: 12px;
margin: 5px;
padding: 1px 7px 1px 7px;
display: inline-block;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
top: 0px;
}

.Button:hover{
cursor: hand; 
cursor: pointer;
}

.Button:active{
border-bottom: 3px solid #999;
top: 3px;
}

这就是我试图让它看起来像的(但我不知道该怎么做): 在此处输入图像描述

请原谅我的绘画技巧。我只想扩展左侧的橙色边框,使其看起来像 3D。谢谢!

4

5 回答 5

5

这是我在一些地方使用过的 3d 按钮的小提琴。它使用 css 进行动画处理以具有活动和悬停状态

小提琴

 .btn-big {
 background-color: #474EDD;
 background-image: -webkit-linear-gradient(283deg, rgba(255, 255, 255, 0.1) 50%, transparent 55%),-webkit-linear-gradient(top, rgba(255, 255, 255, 0.15), transparent);
 border-radius: 6px;
 box-shadow: 0 0 0 1px #163772 inset,0 0 0 2px rgba(255, 255, 255, 0.15) inset,0 4px 0 0      #333797,0 4px 0 1px rgba(0, 0, 0, 0.4),0 4px 4px 1px rgba(0, 0, 0, 0.5);
 color: white !important;
 display: block;
 font-family: "Lucida Grande", Arial, sans-serif;
 font-size: 20px;
 font-weight: bold;
 height: 61px;
 letter-spacing: -1px;
 line-height: 61px;
 margin: 50px;
 position: relative;
 text-align: center;
 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
 text-decoration: none !important;
 -webkit-transition: all .2s linear;
 width: 186px;
 }

 .btn-big:active {
 background-color: #474EDD;
 top: 4px;
 box-shadow: 0 0 0 1px #163772 inset,0 0 0 2px rgba(255, 255, 255, 0.15) inset,0 0 0 0      #333797,0 0 0 1px rgba(0, 0, 0, 0.4),0 0px 8px 1px rgba(0, 0, 0, 0.5);
 }

 .btn-big:hover {
 background-color: #5158E0;
 poisiton: relative;
 top: -1px;
 box-shadow: 0 0 0 1px #163772 inset,0 0 0 2px rgba(255, 255, 255, 0.15) inset,0 5px 0 0      #333797,0 5px 0 1px rgba(0, 0, 0, 0.4),0 5px 8px 1px rgba(0, 0, 0, 0.5);
 }

我希望这会有所帮助!

于 2013-05-13T04:10:59.637 回答
4

这很接近,但并不完美。

使用box-shadow& border

.Button {
    color: #333;
    box-shadow: -3px 3px orange, -2px 2px orange, -1px 1px orange;
    border: 1px solid orange;
}

http://jsfiddle.net/grYTZ/3/

于 2013-05-13T03:54:39.980 回答
4

你想试试这个方法:

http://cssdeck.com/labs/fancy-3d-button

a {
  position: relative;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  background-color: rgba(219, 87, 5, 1);
  font-family: 'Yanone Kaffeesatz';
  font-weight: 700;
  font-size: 3em;
  display: block;
  padding: 4px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 9px 0px rgba(219, 31, 5, 1), 0px 9px 25px rgba(0, 0, 0, .7);
  -moz-box-shadow: 0px 9px 0px rgba(219, 31, 5, 1), 0px 9px 25px rgba(0, 0, 0, .7);
  box-shadow: 0px 9px 0px rgba(219, 31, 5, 1), 0px 9px 25px rgba(0, 0, 0, .7);
  margin: 100px auto;
  width: 160px;
  text-align: center;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
a:active {
  -webkit-box-shadow: 0px 3px 0px rgba(219, 31, 5, 1), 0px 3px 6px rgba(0, 0, 0, .9);
  -moz-box-shadow: 0px 3px 0px rgba(219, 31, 5, 1), 0px 3px 6px rgba(0, 0, 0, .9);
  box-shadow: 0px 3px 0px rgba(219, 31, 5, 1), 0px 3px 6px rgba(0, 0, 0, .9);
  position: relative;
  top: 6px;
}
<link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:700' rel='stylesheet' type='text/css'>
<a href="javascript:void(0);">Push me!</a>

于 2013-05-13T03:21:14.470 回答
1

试试这个你当然可以调整它的大小

<html>
<head>
<style>

.button {
    background: black; 
    border-style: outset;
    border-width: 4px;
    border-color: white;
    border-radius: 8px;
    color: white;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    min-width:500px;
    min-height: 100px;
}
.button:hover{
    border-style: outset;
    border-width: 2px;
    box-shadow: none;
    background: black; 

</style>
</head>
<body>

   <a href="#" class="button">Link Button</a>

</body>
</html>
于 2018-01-26T15:55:29.737 回答
0

您可以使用 MDN 上透视页面中的此示例执行此操作。perspective-origin您可以通过设置in来更改视图.button-container。我的示例也是动画的,因此单击按钮将显示动作。您可以使用 中的转换功能更改它.side

JSFiddle

<div class="container">
  <div class="button-container">
    <div class="bottom side"></div>
    <div class="left side"></div>
    <div class="right side"></div>
    <div class="top side"></div>
    <button class="button side" type="button">Click Me</button>
  </div>
</div>
.button-container {
  --dimension: 100px;
  --adjustment: 0px;
  --red-accent: #B11807;
  --red-dark: #710F05;
  --red: #E31D09;

  height: 100%;
  perspective: 700px;
  perspective-origin: 150% 150%;
  transform-style: preserve-3d;
  width: 100%;
}

.button-container:active {
  --adjustment: 100px;
}

.side {
  border: none;
  box-sizing: border-box;
  display: block;
  height: calc(var(--dimension) - var(--adjustment));
  position: absolute;
  transition: 0.4s ease-out;
  width: calc(var(--dimension) - var(--adjustment));
}

.bottom {
  background: var(--red-accent);
  transform: rotateX(-90deg) translateZ(calc(var(--dimension) / 2 + var(--adjustment) / 2));
  width: var(--dimension);
}

.button {
  background-color: var(--red);
  color: #FFFFFF;
  height: var(--dimension);
  transform: translateZ(calc(var(--dimension) / 2 - var(--adjustment) / 2));
  width: var(--dimension);
}

.left {
  background: var(--red-dark);
  height: var(--dimension);
  transform: rotateY(-90deg) translateZ(calc(var(--dimension) / 2 - var(--adjustment) / 2));
}

.right {
  background: var(--red-dark);
  height: var(--dimension);
  transform: rotateY(90deg) translateZ(calc(var(--dimension) / 2 + var(--adjustment) / 2));
}

.top {
  background: var(--red-accent);
  transform: rotateX(90deg) translateZ(calc(var(--dimension) / 2 - var(--adjustment) / 2));
  width: var(--dimension);

}

.container {
  box-sizing: border-box;
  padding: 100px;
  height: 300px;
  width: 300px;
}

于 2021-06-13T20:50:19.307 回答