htmlcssjs
    <ul>
        <li>第1个选项</li>
        <li>第2个选项</li>
        <li>第3个选项</li>
        <li>第4个选项</li>
        <li>第5个选项</li>
        <li>第6个选项</li>
        <li>第7个选项</li>
        <li>第8个选项</li>
        <li>第9个选项</li>
        <li>第10个选项</li>
        <span></span>
        <p>第1个选项</p>
    </ul>
    * {
        margin: 0;
        padding: 0;
    }

    ul, li {
        list-style: none;
    }

    ul {
        height: 40px;
        margin: 30px auto;
        border-bottom: 3px solid pink;
        width: 1000px;
        position: relative;
    }

    li {
        height: 100%;
        width: 100px;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    ul > span {
        width: 100px;
        height: 3px;
        position: absolute;
        left: 0;
        bottom: -3px;
        background-color: red;
    }

    ul > p {
        width: 100px;
        height: 40px;
        background-color: skyblue;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    $('li').mouseenter(function () {
        $('ul > span')
        .stop()
        .animate({ left: $(this).index() * 100 }, 150, 'linear')
        $('ul > p')
        .stop()
        .animate({ left: $(this).index() * 100 }, 150, 'linear')
        .text($(this).text())
        $(this)
        .siblings()
        .removeClass('active')
        .end()
        .addClass('active')
    })

    $('li').click(function () {
        console.log($(this).text())
    })

    $('p').click(function () {
        const index = $(this).position().left / 100
        $('ul > li').eq(index).trigger('click')
    })

一沙一世界,一花一天堂。君掌盛无边,刹那成永恒。