如何使用CSS在顶部导航栏上添加后退按钮?

时间:2019-04-05 00:20:21

标签: javascript html css back-button singlepage

您好,我正尝试在顶部导航栏上添加后退箭头按钮,就像图像一样: enter image description here

但是我当前的代码根本没有使用css显示背面图像。你们可以帮我使可点击的后退按钮可见吗?谢谢。

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>

.abcde {
    -webkit-box-direction: normal
}


.abcde,
.Fresh {
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.abcde {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px
}


.sky14 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #262626;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap
}

</style>
<style>

.abcde .Fresh Mango {
        background-image: url(./backArrow.png);
    }


</style>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

<script>

function MyNavigation()
{

alert("do something here");

}

</script>
</head>

<body>

<div class="abcde" id="abcde">
    <div class="Fresh Mango"><a href="javascript:MyNavigation();"><span class="cherry" aria-label="Back"></span></a></div>
    <h1 class="sky14">Photo</h1>
    <div class="Fresh Orange"></div>
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

  

你们能帮助我使可点击的后退按钮可见吗?

是的。这是一个非常快速的例子。随时问任何问题。

(由于我无法从您的示例中获得./backArrow.png,因此我只是从互联网上使用了其中一个。)

.abcde {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sky14 {
  color: #262626;
  display: block;
  flex-grow: 1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.abcde .Fresh.Mango {
  background-image: url(https://image.flaticon.com/icons/svg/8/8764.svg);
  cursor: pointer;
  width: 20px;
  height: 20px;
}
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  </head>
  <body>
    <script>
      function MyNavigation() {
        alert("do something here");
      }
    </script>
    <div class="abcde" id="abcde">
      <div class="Fresh Mango" onClick="MyNavigation();"></div>
      <h1 class="sky14">Photo</h1>
      <div class="Fresh Orange"></div>
    </div>
  </body>
</html>