举行悬停事件

时间:2016-06-13 11:03:39

标签: jquery html css css3

我使用此hover-css-items动画菜单。

特别是:背景转换>向右滑动。

enter image description here

当我离开按钮时,我需要像在图2中那样保持动画(默认情况下,如果我将鼠标悬停,它将会出现在图像1中)。

最初链接是红色的...并且在悬停时它会动画为绿色...并且在悬停时它会恢复为红色。 我需要保持链接为绿色,即使我徘徊...并在外部触发返回红色......当需要通过更改课程时。

.hvr-sweep-to-right {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: green;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.try{
	height:80px;
	width:200px;
	background:red;
}
<ul>
		<li class="try hvr-sweep-to-right"> Link 1</li>
		
		<li class="try hvr-sweep-to-right"> Link 2 </li>
	</ul>

4 个答案:

答案 0 :(得分:1)

试试这个,你会明白这个想法:

div {
  width: 100px;
  padding: 11px 16px;
  text-align: center;
  float: left;
  background: #ff3232;
  /* Old browsers */
  background: linear-gradient(to left, red 50%, blue 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  margin-left: 10px;
  transition: all 2s ease;
}
div:hover {
  background-position: top left;
}
<div>Hover</div>

答案 1 :(得分:0)

您可以通过使用Jquery在悬停状态上添加类来实现此目的。还需要一些造型。

.hoverstate {背景:红色;}

$(".hvr-sweep-to-right").on("mouseover", function() {
  $(".hvr-sweep-to-right").addClass('hoverstate');
});

答案 2 :(得分:0)

使用jQuery很容易

$(document).ready(function() {
  $( ".try" ).hover(
    function() {
    }, function() {
    $(this).css({'background':'green'});
    }
  );
});

请参阅小提琴https://jsfiddle.net/atg5m6ym/5846/

答案 3 :(得分:0)

将此代码添加到您的HTML

 .green{
    background: green;
    color: white;
  }

HTML

   <li class="try hvr-sweep-to-right" onmouseout="changeClass(this)"> Link 1</li>

  <li class="try hvr-sweep-to-right" onmouseout="changeClass(this)"> Link 2 </li>

JS

   function changeClass(x){
    if(!x.classList.contains("green"))
      x.classList += " green";
  }