Как исправить переход по всплывающим подсказкам в CSS3? - PullRequest
1 голос
/ 02 июня 2019

Я пытаюсь добавить эффект перехода к «контейнеру» всплывающей подсказки, чтобы при наведении указателя мыши на контейнер отображалась подсказка.Но это также появляется, когда я наводю курсор на саму подсказку.Что можно сделать, чтобы остановить эффект перехода при наведении на всплывающую подсказку, чтобы он отображался только при наведении курсора на контейнер?

/*Styles for the tooltip container*/

.tooltip {
  margin-top: 5rem;
  height: 100px;
  width: 300px;
  background-color: aquamarine;
  padding: 1rem;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 18px;
  text-align: center;
  line-height: 100px;
  position: relative;
}


/* Styles for the tooltip*/

.tooltip::before {
  content: attr(title);
  width: 200px;
  height: auto;
  font-size: 15px;
  color: #fff;
  background: #000;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  line-height: 30px;
  z-index: 2;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  transition: opacity 0.4s ease-in-out;
}


/* Styles for the arrow*/

.tooltip::after {
  content: "";
  width: 0;
  height: 0;
  z-index: 2;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  transition: opacity 0.4s ease-in-out;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}
<div class="tooltip" title="Lorem ipsum dolor sit amet consectetur 
     adipisicing elit. Minima, ipsa.">tooltip</div>

1 Ответ

0 голосов
/ 03 июня 2019

Просто нужно отменить события указателя, добавив pointer-events: none; к псевдоэлементу.Приветствия и добро пожаловать на ТАК!:)

/*Styles for the tooltip container*/

.tooltip {
  margin-top: 5rem;
  height: 100px;
  width: 300px;
  background-color: aquamarine;
  padding: 1rem;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 18px;
  text-align: center;
  line-height: 100px;
  position: relative;
}


/* Styles for the tooltip*/

.tooltip::before {
  content: attr(title);
  width: 200px;
  height: auto;
  font-size: 15px;
  color: #fff;
  background: #000;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  line-height: 30px;
  z-index: 2;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}


/* Styles for the arrow*/

.tooltip::after {
  content: "";
  width: 0;
  height: 0;
  z-index: 2;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  transition: opacity 0.4s ease-in-out;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}
<div class="tooltip" title="Lorem ipsum dolor sit amet consectetur 
     adipisicing elit. Minima, ipsa.">tooltip</div>
...