gpt4 book ai didi

jquery - 在带有图标的图像上创建悬停状态

转载 作者:太空宇宙 更新时间:2023-11-04 12:05:24 27 4
gpt4 key购买 nike

我是 HTML5/Bootstrap 的新手,我正在尝试向我的响应式图像添加基本的悬停状态,并使它们充当按钮。这是我目前开发的。

          <div align="center" class="col-sm-2">
<a href="#">
<picture>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="../../../img/img1.png" class="img-responsive" media="(min-width: 800px)">
<!--[if IE 9]></video><![endif]-->
<img srcset="../../../img/img1-sm.png, ../../../img/img1-sm.png" class="img-responsive" alt="Image One">
</picture>
</a>
</div>

最佳答案

您始终可以使用 css,具体取决于您希望悬停产生的效果。下面的代码放在您的 css 样式表文件中,或者放在用“style”标签包裹的文档中

picture img:hover{
/*Things to happen on hover*/
}

或者您可以使用 jQuery。下面的代码进入“脚本”标签,可以在页面加载时运行。

$(window).load(function(){
$('picture').find('img').hover(function(){
//Things to happen on hover
});
});

把它做成一个按钮,把它包在一个链接里或者用jQuery创建一个点击事件

关于jquery - 在带有图标的图像上创建悬停状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29422083/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com