CSS LOVE! Анимированный фон в цитате при наведении мыши работает, а при отключении мыши - нет

Мне потребовалось несколько часов, чтобы полностью пересмотреть стандарт <blockquote> тег и теперь я застрял на последнем этапе, анимация. Я попробовал почти все, что есть, но могу заставить его работать должным образом. Если бы кто-то мог помочь мне здесь, я был бы очень благодарен.

В идеале я бы хотел, чтобы птица Twitter двигалась и исчезала:

С ЛЕВОГО К ЦЕНТРАЛЬНОМУ (постепенно при движении к центру - при наведении мыши) и
С ЦЕНТРАЛЬНОГО ПРАВА (исчезает при движении вправо - при нажатии мыши)

Я заставил птицу перемещаться слева направо при наведении мыши, но я не могу заставить ее перемещаться из центра вправо при наведении мыши.

Пожалуйста отметьте это <blockquote> настроен с помощью псевдо-классов и элементов и выглядит следующим образом.

<blockquote>
  <a href="#">Text link here</a>
</blockquote>

Я использовал 1 класс для ссылки, только чтобы расширить кликабельную область. Если вы знаете способ, который не включает этот старый трюк, пожалуйста, дайте мне знать.

Пожалуйста, проверьте мою работу. Любые предложения или улучшения кода приветствуются.

https://jsfiddle.net/7kr7en1m/

1 ответ

Решение

Я использовал этот ответ, чтобы помочь понять это.

Ключ анимировал и поля слева и слева. Это работает так:

  1. Птица начинает справа от blockquote
  2. При наведении птица перемещается влево от blockquote без какой-либо анимации путем установки margin-left до 0, а затем начинает left недвижимость начинает анимацию в.
  3. После зависания птица оживляет вправо, потому что margin-left анимация была повторно применена.

a {
  text-decoration: none;
}

a:link {
  color: #f00;
}

a:visited {
  color: #f00;
}

a:hover {
  color: rgba(0, 0, 0, 0);
}

blockquote {
  position: relative;
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  padding: 10px 35px 10px;
  margin: 0 15px;
  border: solid 1px rgb(220, 220, 220);
  border-radius: 10px;
  position: relative;
  background-color: white;
  box-shadow: 5px 5px 20px #e9edef;
  width: 20%;
  min-width: 200px;
  float: right;
 overflow: hidden;
}

blockquote:hover {
  
}

a:after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: -90%;
  margin-left: 200%;
  transition: left 300ms linear, margin-left 300ms ease-out;
  color: #009fff;
  cursor: pointer;
  background-image: url('http://image.prntscr.com/image/39b3926093f442c095554fb6a147ef01.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* transition: background-image 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease; */
}

a:before {
  content: '';
  transition: background-color 300ms ease;
}

a:hover:before {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: contain;
  background-color: #009fff;
  border: solid 1px #009fff;
}

a:hover:after {
  transition: left 300ms ease-out;
  margin-left: 0;
  left: 0;
}
<h3>
What is Lorem Ipsum?
</h3>

<blockquote>
  <a href="#" class="qoute-to-tweet">Animated Lorem Ipsum dummy text that is used in this quote is ready to be tweeted with one click</a>
</blockquote>

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.

Другие вопросы по тегам