zoukankan      html  css  js  c++  java
  • js样式,默认显示第一个

    1、
    $('.z_scly_li li').mouseover(function(){
    $(this).find('a').addClass('z_scly_li_on').parent().siblings().find('a').removeClass('z_scly_li_on');
    });

    样式:
    .z_scly_li_on{
    color:#1565c0!important;
    text-decoration:underline!important;
    }
    HTML:
    <ul class="z_scly_li">
    <li><a class="z_scly_li_on" href="">心理箱庭疗法</a></li>
    <li><a href="">心理咨询</a></li>
    <li><a href="">心理测量</a></li>
    <li><a href="">个人成长</a></li>
    <li><a href="">案例督导</a></li>
    <li><a class="z_connect f16" href="">联系咨询</a></li>
    </ul>
    2、
    $(".qtzjtj_con").find("li").hover(function(){
    $(this).addClass("on").siblings().removeClass("on");
    });
    $(".qtzjtj_con").find("li").mouseover(function(){
    $(this).find('img').addClass("onn");
    }).mouseout(function(){
    $(this).find('img').parent().siblings().find('img').removeClass("onn");
    });

    HTML:
    <ul class="qtzjtj_con text-center">
    <li class="on"><img class="img-circle onn" src="static/images/图层 3.png" style="168px;height:168px;border:1px solid #e1e1e1;"/>
    <p style="margin-top:130px;"> <h4 class="f21 f21_h4">蔡忠准</h4><span class="f18">国际权威催眠大师</span></p></li>
    <li><img class="img-circle" src="static/images/图层 3.png" style="168px;height:168px;border:1px solid #e1e1e1;"/>
    <p style="margin-top:130px;"><h4 class="f21 f21_h4">蔡忠准</h4><span class="f18">国际权威催眠大师</span></p></li>
    <li><img class="img-circle" src="static/images/图层 3.png" style="168px;height:168px;border:1px solid #e1e1e1;"/>
    <p style="margin-top:130px;"><h4 class="f21 f21_h4">蔡忠准</h4><span class="f18">国际权威催眠大师</span></p></li>
    <li><img class="img-circle" src="static/images/图层 3.png" style="168px;height:168px;border:1px solid #e1e1e1;"/>
    <p style="margin-top:130px;"><h4 class="f21 f21_h4">蔡忠准</h4><span class="f18">国际权威催眠大师</span></p></li>
    </ul>

    样式:
    .on{
    border:1px solid #1e88e5!important;
    }
    .onn{
    border:1px solid #1e88e5!important;
    }

    3、
    $('.z_hyzc1>div').mouseover(function(){
    $(this).addClass('z_on').siblings().removeClass('z_on'); //找同级的
    $(this).addClass('z_on').parent().siblings().find('div').removeClass('z_on'); //找父级里的子级
    });
     


  • 相关阅读:
    2019.5.1
    拓扑排序(topological sort)
    邻接表+链式前向星
    桶排序+基数排序+计数排序
    奶牛排队
    set
    win10家庭版怎么开启Administrator超级管理员帐户
    Office Online Server 在线编辑Office文档,安装部署
    Centos分区/超过2T的磁盘
    win10照片查看器不能看jpg等格式图片
  • 原文地址:https://www.cnblogs.com/wolflower/p/6857067.html
Copyright © 2011-2022 走看看