图片转换不适用于Animate.css& Wow.js

时间:2018-01-17 07:54:26

标签: html css css-animations

所以在我使用Animate.css&之前Wow.js,图像转换工作......
这是我的代码:
--- --- HTML

<a href='#' target="_blank" class="tooltip">
     <img src='img/image.PNG' data-wow-offset="2300" class="wow zoomIn"/>
     <span class="tooltiptext">e</span>
</a>

--- --- CSS

img {
    width: 30%;
    margin: 8px;
    border-radius: 6px;
    border: 1px dashed;
    height: 150px;
    opacity: 0.7;
    transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
}
img:hover {
    opacity: 1;
}

当我从头部删除animate.css行时,转换工作

<link rel="stylesheet" href="css/animate.min.css" type="text/css">

0 个答案:

没有答案