好友列表选中

Posted 桃花灬仙人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好友列表选中相关的知识,希望对你有一定的参考价值。

好友列表选中:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>好友列表选中</title>
<style type="text/css">
*{margin:0px auto; padding:0px;}
.aa{ width:200px; height:250px;}
.ss{ width:200px; height:50px; background-color:#0F0; color:#003;
text-align:center; line-height:50px; vertical-align:middle; margin-top:5px}
.ss:hover{ background-color:#00F !important; color:#fff !important; cursor:pointer;}
</style>
</head>

<body>
    <div class="aa">
        <div class="ss">刘一</div>
        <div class="ss">陈二</div>
        <div class="ss">张三</div>
        <div class="ss">李四</div>
        <div class="ss">王五</div>
    </div>
    
<script type="text/javascript">
 var ss = document.getElementsByClassName("ss")
   for(var i=0;i<ss.length;i++)
   {
       ss[i].onclick = function()
       {
        for(var i=0;i<ss.length;i++)
         {
           ss[i].style.backgroundColor = "#0f0";
           ss[i].style.color = "#003";
       }
       this.style.backgroundColor = "#00f";
       this.style.color = "#fff";
       }
   }
</script>
</body>
</html>

效果图:

 

以上是关于好友列表选中的主要内容,如果未能解决你的问题,请参考以下文章

好友列表选中

鼠标事件和表单事件+好友列表选中效果+侧面菜单下拉效果

例子:好友列表选中效果

Js效果:图片轮播;选项卡;侧面菜单下拉效果;进度条效果;滑动效果;好友列表选中效果;点击选中显示效果

多选模式列表视图行在删除后保持选中状态

实现微信好友列表的php代码