jq高亮效果

Posted cuter、

tags:

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

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="jquery.min.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
        }
        
        body {
            background-color: black;
        }
        
        .content {
            width: 650px;
            height: 420px;
            margin: 100px auto;
            border: 1px solid #fff;
        }
        
        .imgbox {
            width: 650px;
            height: 420px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-content: space-around;
            justify-items: center;
        }
        
        .over {
            background-color: black;
            opacity: .5;
        }
    </style>
</head>

<body>
    <div class="content">
        <ul class="imgbox">
            <li><img src="images/01.jpg" alt=""> </li>
            <li><img src="images/02.jpg" alt=""> </li>
            <li><img src="images/03.jpg" alt=""> </li>
            <li><img src="images/04.jpg" alt=""> </li>
            <li><img src="images/05.jpg" alt=""> </li>
            <li><img src="images/06.jpg" alt=""> </li>
        </ul>
    </div>
    <script>
        // var box = document.querySelector('.imgbox');
        // for (var i = 0; i < box.children.length; i++) {
        //     box.children[i].addEventListener('mouseover', function(e) {
        //         for (var i = 0; i < box.children.length; i++) {
        //             box.children[i].className = 'over';
        //         }
        //         this.setAttribute('class', '');

        //     })

        // }
        $(function() {
            $(".imgbox li").hover(function() {
                $(this).siblings('li').stop().fadeTo(200, 0.5)

            }, function() {
                $(this).siblings('li').stop().fadeTo(200, 1)
            })
        })
    </script>

</body>

</html>

以上是关于jq高亮效果的主要内容,如果未能解决你的问题,请参考以下文章

十条jQuery代码片段助力Web开发效率提升

百度js地图实现列表与地图上的标注点的联动效果。即点击列表中的一列,实现地图上的标注高亮显示且弹出窗

为 PaintCode 代码创建的 UIButton 添加高亮效果

JQ实现吸顶效果代码

jQ选择器学习片段(JavaScript 部分对应)

Solr 高亮是不是还可以指示返回的片段在原始字段中的位置或偏移量?