zoukankan      html  css  js  c++  java
  • li颜色特效

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title></title>
        <script src="scripts/jquery-1.7.1.min.js"></script>
        <script>
            $(function () {
                $('li').hover(function () {//移上
                    $(this).css('background-color', 'red')
                        .prevAll()//这个方法找到当前节点的所有节点,破坏了当前的链
                        .css('background-color', 'yellow')
                        .end()//恢复最近的一次链的破坏
                    .nextAll()
                    .css('background-color', 'blue')
                    ;
                }, function () {//移开
                    $(this).css('background-color', 'white')
                        .siblings().css('background-color', 'white');//获取左右的兄弟节点
                });
            });
        </script>
    </head>
    <body>
        <ul>
            <li>北京</li>
            <li>上海</li>
            <li>广州</li>
            <li>深圳</li>
        </ul>
    </body>
    </html>

  • 相关阅读:
    Mahout推荐算法ItemBased
    ALSA安装编程指南
    windbg更改cmd的token提升其特权
    至尊问题
    什么是“Bash”破绽?
    hdu 1548 A strange lift
    C 循环链表
    C++ 链表
    C_数据结构_链表的链式实现
    C _数据结构 _线性表的顺序存储
  • 原文地址:https://www.cnblogs.com/wyt007/p/6050768.html
Copyright © 2011-2022 走看看