今日任务:添加用户头像模块,点击用户头像会跳转到用户个人中心。
主要代码:
/*个人中心*/ .myhead { 84px; height:84px; margin-top: -80%; margin-left: 35%; background-image: url("../img/userpic.jpg"); background-size: 90% 90%; border-radius:50% }
<!--主页面头部-->
<div id="header">
<!--电影logo
<div class="logo">
<img src=".imglogo.png" height="100px" width="100px" />
</div>
-->
<div class="title"><h1 id="title">树懒电影</h1></div>
<div class="container">
<form action="#" class="parent">
<input type="text" class="search" placeholder="电影名称,主演" id="search_head">
<button id="search_head_btn" class="btn_search"></button>
</form>
</div>
<div class="mycenter"><input class="myhead" type="button" value="" id="head_picture"></div>
<!--头像超链接到个人信息页面-->
<script>
var head_picture=document.getElementById("head_picture")
head_picture.onclick=function(){
window.open("/user_pager",'_blank')
}
</script>
</div>