最佳答案
我四处看了看,但是找不到我要找的东西。
我目前有一个 CSS 动画在我的页面,这是触发: 悬停。我想这改变为’点击’或’触摸’时,页面大小调整超过宽度700像素使用媒体查询。
以下是我目前所掌握的: http://jsfiddle.net/danieljoseph/3p6Kz/
正如你所看到的,: hover 不能在移动设备上工作,但是我仍然希望通过点击确保它能以同样的方式工作,而不是悬停。
如果可能的话,我更愿意使用 css,但对 JQuery 也很满意。
I have a feeling this is very easy to do but i am just missing something very obvious! Any help would be appreciated.
下面是 css 动画:
.info-slide {
position:absolute;
bottom:0;
float:left;
width:100%;
background:url(../images/blue-back.png);
height:60px;
cursor:pointer;
overflow:hidden;
text-align:center;
transition: height .4s ease-in-out;
-webkit-transition: height .4s ease-in-out;
-moz-transition: height .4s ease-in-out;
}
.info-slide:hover {
height:300px;
}