jquery-mobile - jQuery移动高亮效果

标签 jquery-mobile

我希望将 jquery ui 之类的突出显示效果应用于元素,但我使用的是 jquery mobile。 jquery mobile 中是否有内置的东西可以让我做到这一点,而无需引用任何 jquery ui 内容?

谢谢

最佳答案

这样的东西有用吗?

注意:这可能会影响哈希导航,但都是 CSS

CSS

:target {
    -webkit-animation: target-fade 3s 1;
    -moz-animation: target-fade 3s 1;
}

@-webkit-keyframes target-fade {
    0% { background-color: rgba(0,0,0,.1); }
    100% { background-color: rgba(0,0,0,0); }
}
@-moz-keyframes target-fade {
    0% { background-color: rgba(0,0,0,.1); }
    100% { background-color: rgba(0,0,0,0); }
}

HTML

<a href="#1">Link 1</a>
<a href="#2">Link 2</a>
<a href="#3">Link 3</a>
<p id="1">Paragraph 1</p>
<p id="2">Paragraph 2</p>
<p id="3">Paragraph 3</p>

链接引用:

关于jquery-mobile - jQuery移动高亮效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7924869/

相关文章:

javascript - 点击按钮触发按钮 "under"他

javascript - 创建phonegap项目的 list -有人可以添加更多元素

jquery-mobile - jQuery mobile 和 Google Analytics - 单页模板

javascript - 在 jquery mobile 中动态选择组合框

javascript - ajax 表单请求仍然重新加载页面

jQuery Mobile - 删除后退按钮,data-nobackbtn 属性不起作用

javascript - 如何修复或解决 iPhone 上的亚像素处理问题?

javascript - 使用 jQuery Mobile 刷新表单页面

打开操作之前的 Jquery 移动面板

javascript - 在 Jquery 或 Jquery Mobile 中使用向左滑动来向左旋转图像