当一个元素悬停并影响CSS中的另一个元素/类时,如何添加悬停效果?

拉纳博士

当我将鼠标悬停在一个班上时会怎么办?

如果我将鼠标悬停.service_text.service_icon应该更改的背景颜色.service_bar_1

例如链接:https://codepen.io/aasaadzaman5/pen/XWJPjpN

.service_content .service_text:hover .service_bar_1,
.service_content .service_text:hover .service_bar_2,
.service_content .service_text:hover .service_bar_3 { 
          background-color: #e74c3c; 
          height: 2px; 
 }
  <!-- Our Services Start -->
           <section id="custom_width">
              <div class="services">
                 <div class="container-fluid">
                    <div class="row">
                       <div class="col-md-6">
                          <div class="service_content">
                             <div class="service_content_tablecell">
                                <h2>OUR SeRVICES</h2>
                                <div class="service_text">
                                   <h4>WEB DESIGN</h4>
                                   <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                                      has
                                      been the industry's standard dummy text ever.</p>
                                </div>
                                <div class="service_text">
                                   <h4>PRINT DESIGN</h4>
                                   <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                                      has
                                      been the industry's standard dummy text ever.</p>
                                </div>
                                <div class="service_text">
                                   <h4>PHOTOGRAPHY</h4>
                                   <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                                      has
                                      been the industry's standard dummy text ever.</p>
                                </div>
                             </div>
                          </div>
                         <div class="service_bar_1 service_bar"> </div>
                         <div class="service_bar_2 service_bar"></div>
                         <div class="service_bar_3 service_bar"></div>
                       </div>

                       <div class="col-md-6">
                          <div class="service_bg">
                             <div class="service_icon_1 service_icon">
                                <a href="#"><i class="fab fa-facebook-f"></i></a>
                             </div>
                             <div class="service_icon_2 service_icon">
                                <a href="#"><i class="fab fa-facebook-f"></i></a>
                             </div>
                             <div class="service_icon_3 service_icon">
                               <a href="#"><i class="fab fa-facebook-f"></i></a>
                             </div>
                          </div>
                       </div>
                    </div><!-- row / -->
                 </div><!-- container-fluid / -->
              </div><!-- service_bg / -->
           </section><!-- Our Services End -->

乌德·泰特斯(Udhay Titus)

通过jquery可以实现。在您的代码笔中尝试以下代码

$(document).ready(function() {
  $(".service_icon_1").hover(function() {
    $(".service_bar_1").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_1").css("background-color","#2a2a2a");
  });
   $(".service_icon_2").hover(function() {
    $(".service_bar_2").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_2").css("background-color","#2a2a2a");
  });
   $(".service_icon_3").hover(function() {
    $(".service_bar_3").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_3").css("background-color","#2a2a2a");
  });
});

Codepen中的代码段

$(document).ready(function() {
  $(".service_icon_1").hover(function() {
    $(".service_bar_1").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_1").css("background-color","#2a2a2a");
  });
   $(".service_icon_2").hover(function() {
    $(".service_bar_2").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_2").css("background-color","#2a2a2a");
  });
   $(".service_icon_3").hover(function() {
    $(".service_bar_3").css("background-color","#e74c3c");
  }, function() {
    $(".service_bar_3").css("background-color","#2a2a2a");
  });
});
* {
   margin: 0px;
   padding: 0px;
}

body {
   box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   color: #999999;
   font-size: 14px;
   font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Source Sans Pro', sans-serif;
   margin: 0;
   padding: 0;
   color: #6a6a6a;
   font-weight: 700;
}

p {
   color: #999999;
   font-family: 'Source Sans Pro', sans-serif;
   font-weight: 300;
}

ul,
p {
   margin: 0px;
   padding: 0px;
}

img {
   max-width: 100%;
   height: auto;
}

.margin_padding_0 {
   margin: 0px;
   padding: 0px;
}

input:focus,
button:focus,
textarea:focus {
   outline: none;
}

::-webkit-input-placeholder {
   color: #999999;
   font-weight: 500;
}

::-moz-placeholder {
   color: #999999;
   font-weight: 500;
}

:-ms-input-placeholder {
   color: #999999;
   font-weight: 500;
}

::-ms-input-placeholder {
   color: #999999;
   font-weight: 500;
}

::placeholder {
   color: #999999;
   font-weight: 500;
}

a:hover,
a:focus {
   text-decoration: none;
}



/************************************** 
     Our Services Section Start
***************************************/
.services {
   height: 765px;
   background-color: #202020;
   z-index: 1;
   position: relative;
}

.services:after {
   background-image: url(https://images.unsplash.com/photo-1579097273782-909a29b692c3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
   background-position: center;
   background-size: cover;
   height: 765px;
   position: absolute;
   z-index: -2;
   content: '';
   width: 100%;
   top: 0%;
   left: 0%;
}

.service_icon_1 a,
.service_icon_2 a,
.service_icon_3 a {
   background: #f4f5f9;
   width: 64px;
   height: 64px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   display: inline-flex;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
  
   font-size: 27px;
}

.service_icon_2 a {
   top: 48%;
   left: 5%;
}

.service_icon_3 a {
   top: 68%;
   left: 5%;
}

.service_icon_1 a:after,
.service_icon_2 a:after,
.service_icon_3 a:after {
   content: '';
   position: absolute;
   background: #fff;
   width: 72px;
   height: 72px;
   z-index: -1;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   opacity: .3;
   left: -6%;
   top: -7%;
}

.service_icon_2 a:after {
   left: -6%;
   top: -7%;
}

.service_icon_3 a:after {
   left: -6%;
   top: -7%;
}

.service_content {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: end;
   -webkit-justify-content: flex-end;
   -ms-flex-pack: end;
   justify-content: flex-end;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   height: 765px;
   text-align: right;
   padding-right: 58px;
   position: relative;
}

.service_bar {
   position: absolute;
   width: 34px;
   height: 1px;
   background-color: #2a2a2a;
   left: 0%;
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
   z-index: 5;
}

.service_bar_1 {
   top: 45%;
}

.service_bar_2 {
   top: 52%;
}

.service_bar_3 {
   top: 59%;
}

.service_text {
   margin-bottom: 70px;
   max-width: 670px;
}

.service_text:last-child {
   margin-bottom: 0px;
}

.service_content .service_text:hover+.service_bar_1,
.service_content .service_text:hover+.service_bar_2,
.service_content .service_text:hover+.service_bar_3 {
   background-color: #e74c3c;
   height: 2px;
}

.service_content_tablecell {
   margin-left: 30px;
}

.service_content_tablecell h2 {
   font-size: 36px;
   color: #f4f5f9;
   text-transform: uppercase;
   position: relative;
}

.service_content_tablecell h2:after {
   position: absolute;
   content: '';
   width: 36px;
   height: 6px;
   background: #e74c3c;
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
   top: 50%;
}

.service_text h4 {
   font-size: 18px;
   text-transform: uppercase;
   color: #e74c3c;
   font-weight: 600;
   margin-top: 65px;
   margin-bottom: 10px;
}

.service_text p {
   line-height: 1.8;
   font-weight: 500;
}



/************************************** 
     Our Services Section End
***************************************/
<!DOCTYPE html>
<html lang="en">

<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">

   <!-- Favicon -->
   <link rel="icon" href="favicon-32x32.png" type="image/png">

   <title>Html Starter Package By Md. Asaduzzaman Rana</title>

   <!-- CSS Links -->

   <!-- Google Fonts -->
   <link
      href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Source+Sans+Pro:300,300i,400,400i,600,700,700i,900&display=swap"
      rel="stylesheet">
   <!-- Material icons CDN Link -->
   <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
   <!-- Font Awesome CSS Link -->
   <link rel="stylesheet" href="css/all.min.css">
   <link rel="stylesheet" href="css/slick.css">
   <!-- <link rel="stylesheet" href="css/owl.carousel.min.css">
   <link rel="stylesheet" href="css/owl.theme.default.min.css"> -->

   <!------- Bootstrap CSS Link ------->
   <link rel="stylesheet" href="css/bootstrap.min.css">
   <!-- Bootstrap CSS CDN Link -->
   <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> -->

   <link rel="stylesheet" href="css/style.css">
   <link rel="stylesheet" href="css/responsive.css">
</head>

<body>
   

<!-- Our Services Start -->
   <section id="custom_width">
      <div class="services">
         <div class="container-fluid">
            <div class="row">
               <div class="col-md-6">
                  <div class="service_content">
                     <div class="service_content_tablecell">
                        <h2>OUR SeRVICES</h2>
                        <div class="service_text">
                           <h4>WEB DESIGN</h4>
                           <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                              has
                              been the industry's standard dummy text ever.</p>
                        </div>
                        <div class="service_text">
                           <h4>PRINT DESIGN</h4>
                           <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                              has
                              been the industry's standard dummy text ever.</p>
                        </div>
                        <div class="service_text">
                           <h4>PHOTOGRAPHY</h4>
                           <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum
                              has
                              been the industry's standard dummy text ever.</p>
                        </div>
                     </div>
                  </div>
                 <div class="service_bar_1 service_bar"> </div>
                 <div class="service_bar_2 service_bar"></div>
                 <div class="service_bar_3 service_bar"></div>
               </div>

               <div class="col-md-6">
                  <div class="service_bg">
                     <div class="service_icon_1 service_icon">
                        <a href="#"><i class="fab fa-facebook-f"></i></a>
                     </div>
                     <div class="service_icon_2 service_icon">
                        <a href="#"><i class="fab fa-facebook-f"></i></a>
                     </div>
                     <div class="service_icon_3 service_icon">
                       <a href="#"><i class="fab fa-facebook-f"></i></a>
                     </div>
                  </div>
               </div>
            </div><!-- row / -->
         </div><!-- container-fluid / -->
      </div><!-- service_bg / -->
   </section><!-- Our Services End -->





























    <!------- jQuery Link ------->
   <!-- <script src="js/jquery-3.4.1.min.js"></script> -->
   <!-- jQuery CDN Links -->
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
   <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>

   <!------- Bootstrap js Link ------->
   <!-- <script src="js/bootstrap.min.js"></script> -->
   <!-- Bootstrap CDN link -->
   <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
      integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
      crossorigin="anonymous"></script>

   <!-- <script src="js/Necessary-Plugin/Owl-Carousel-Slider/owl.carousel.min.js"></script> -->
   <script src="js/slick.min.js"></script>

   <!------- Font Awesome js link ------->
   <!-- <script src="js/all.min.js"></script> -->
   <!-- Font Awesome CDN or Kit js link -->
   <script src="https://kit.fontawesome.com/41baba5a65.js" crossorigin="anonymous"></script>

   <!------- isotope js link ------->
   <!-- <script src="js/Necessary-Plugin/isotope/isotope.pkgd.min.js"></script> -->
   <!-- isotop js CDN link -->
   <!-- <script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script> -->

   <!-- CounterUp -->
   <!-- <script src="js/Necessary-Plugin/Counterup-on-Scrolling/jquery.waypoints.min.js"></script>
   <script src="js/Necessary-Plugin/Counterup-on-Scrolling/jquery.countup.min.js"></script> -->

   <script src="js/script.js"></script>
</body>

</html>

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

sass:悬停另一个div时影响另一个元素

CSS,悬停一个元素,通过过渡影响另一个元素

当另一个元素纯粹悬停在 css 中时,如何更改一个元素的样式属性?

悬停在另一个元素上时如何更改元素的CSS元素

将类添加到悬停时共享类的另一个元素

悬停上的CSS会影响另一个容器(引导卡)中的元素

悬停元素时,使另一个元素出现

如何在另一个元素悬停时更改多个元素 css?

悬停另一个元素(ReactJS)时如何更改一个元素的样式?

如何在悬停另一个元素时更改一个元素的颜色?

悬停一个元素并影响另一个元素

Javascript - 在悬停时添加类并保持它直到悬停在另一个元素上

悬停时,更改不近的另一个元素

在输入悬停时选择另一个元素

CSS悬停效果修改另一个元素不起作用

当另一个元素悬停在元素上时更改元素中的文本

CSS,将鼠标悬停在一个元素上,影响另一个

悬停一个伪元素时,使另一个伪元素出现?

当将另一个元素悬停在元素上时,如何更改:hover状态?

如何在元素悬停时为另一个元素设置动画?

将一个元素悬停在另一个元素上时更改其CSS

如何使用css / Extjs将元素悬停在另一个元素上

当我将父子元素悬停到另一个父子元素时,CSS问题如何应用更改?

当用javascript悬停另一个元素时,我需要在表格中显示一个元素

CSS-当它们都属于不同的div时,通过将元素悬停在另一个元素上来影响元素

选择另一个元素时,CSS 悬停将不起作用

CSS - 悬停链接时更改另一个元素的样式?

当悬停在另一个<li>上时,如何阻止我的<li>元素移动?

如何仅使用CSS在另一个元素的悬停上显示div