jquery手风琴效果

jquery手风琴效果_第1张图片

----------



<html>

<head>
    <meta charset="utf-8" />
    <title>title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }

        #acc {
            width: 640px;
            height: 140px;

            margin: 0 auto;
        }

        #acc ul {
            border-left: 1px solid #ddd;
            height: 140px;
            position: relative;
        }

        #acc ul li {
            width: 50px;
            height: 138px;
            border: 1px solid #ddd;
            float: left;
            list-style: none;
            border-left: 0;
            position: relative;
            overflow: hidden;
        }

        #acc ul li.active {
            width: 434px;

        }

        #acc ul li h3 {
            font-size: 14px;
            color: #000;
            font-weight: 100;
            width: 14px;
            height: 98px;
            padding: 40px 18px 0;

        }

        #acc ul li h3.hover {
            background: #f42760;
            color: #fff;
        }

        #acc ul li div {
            width: 383px;
            height: 138px;
            background: blue;
            position: absolute;
            top: 0;
            left: 50px;
            border-left: 1px solid #ddd;
            z-index: 0;
        }

        #acc ul li.last {
            position: absolute;
            top: 0;
            right: 0;
        }
    style>
head>

<body>
    <div id="acc">

        <ul>
            <li class="active">
                <h3 class="hover">红玫瑰h3>
                <div>div>
            li>
            <li>
                <h3>白玫瑰h3>
                <div>div>
            li>
            <li>
                <h3>白玫瑰h3>
                <div>div>
            li>
            <li>
                <h3>白玫瑰h3>
                <div>div>
            li>
            <li class="last">
                <h3>白玫瑰h3>
                <div>div>
            li>
        ul>

    div>

    <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js">script>

    <script type="text/javascript">
        //找到当前元素,给定移入事件
        $("#acc>ul>li").mouseover(function () {
            // 移入当前事件,首先先停止,然后给当前的元素的设置动画,将宽度改成434,过渡时间500毫秒,然后当前元素的兄弟元素先进行停止,然后给当前元素设置动画,将宽度设置成50,过度事件500毫秒。
            $(this).stop().animate({ width: 434},500).siblings().stop().animate({ width:50},500);
            // 当前元素的h3的子元素添加样式类和文本
            $(this).children("h3").addClass("hover").text("红玫瑰");
            // 当前元素的兄弟元素的h3的子元素删除样式类hover,更改文本为白玫瑰。
            $(this).siblings().children("h3").removeClass("hover").text("白玫瑰");
        })
    script>

body>

html>

你可能感兴趣的:(JavaScript,jquery特效)