简体   繁体   English

如何在菜单中添加房子图标?

[英]How to add a house icon to the menu?

I want to modify my menu so that it there will be a little house icon at the beginning and when the user clicks that house icon he will be redirected to the homepage. 我想修改我的菜单,以便在开头有一个小房子图标,当用户点击该房子图标时,他将被重定向到主页。 The problem is I don't know what to change or where... I have the code in html+css 问题是我不知道要改变什么或在哪里......我的代码在html + css中

<li class="home"><a href="#"><div class="home-image"></div></a></li>

Thanks. 谢谢。

尝试这个

<li class="home"><a href="#"><div class="home-image"><span class="icon-home"></span></div></a></li>

You can use Font Awesome/Bootstrap/Google. 您可以使用Font Awesome / Bootstrap / Google。

Font Awesome: 字体真棒:

Paste the below code in Head section [ <head>paste it here</head> ] 将以下代码粘贴到Head部分[ <head>paste it here</head> ]

<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">

and add this 并添加此

<li class="home"><a href="#"><div class="home-image"><i class="fa fa-home"></i></div></a></li>

Bootstrap Icons: 引导图标:

Paste the below code in Head section [ <head>paste it here</head> ] 将以下代码粘贴到Head部分[ <head>paste it here</head> ]

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

and add this 并添加此

<li class="home"><a href="#"><div class="home-image"><i class="glyphicon glyphicon-home"></i></div></a></li>

Google Icons: 谷歌图标:

Paste the below code in Head section [ <head>paste it here</head> ] 将以下代码粘贴到Head部分[ <head>paste it here</head> ]

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

and add this 并添加此

<li class="home"><a href="#"><div class="home-image"><i class="material-icons">home</i></div></a></li>

You need to add style to change the size of the icon. 您需要添加样式以更改图标的大小。

Examples: 例子:

<i class="fa fa-home" style="font-size:24px;"></i>
<i class="glyphicon glyphicon-home" style="font-size:24px;"></i>
<i class="material-icons" style="font-size:24px;">home</i>

If you dont know anything about css then just paste this code 如果您对css一无所知,那么只需粘贴此代码即可

<li class="home"><a href="http://google.com/"><div class="home-image">
    <img width="50" height="50"  style="margin-top:3px" src="http://icons.iconarchive.com/icons/double-j-design/origami-colored-pencil/256/blue-home-icon.png">
</div></a></li>

jsfiddle demo jsfiddle演示

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM