首页 > web前端 > js教程 > 基于jQuery创建鼠标悬停效果的方法_jquery

基于jQuery创建鼠标悬停效果的方法_jquery

WBOY
发布: 2016-05-16 16:11:02
原创
1456 人浏览过

本文实例讲述了基于jQuery创建鼠标悬停效果的方法。分享给大家供大家参考。具体实现方法如下:

1. 创建HTML:

<ul>
<li><a href="/tv"><img  src="images/tv_off.gif" class="mainnav" alt="基于jQuery创建鼠标悬停效果的方法_jquery" ></a></li>
</ul>
登录后复制

2. 选择.mainnav的class:

$(".mainnav").hover(
 function () {
 },
 function () {
 }
);
登录后复制

3. 建立变量imgPath,指定图片SRC:

$(".mainnav").hover(
 function () {
  // Grab the source
  var imgPath = $(this).attr("src");
 },
 function () {
  // Grab the source
  var imgPath = $(this).attr("src");
  }
);
登录后复制

4. 找到字符串off,用on替换:

$(".mainnav").hover(
 function () {
  // Grab the source
  var imgPath = $(this).attr("src");
  // Replace the path in the source
  $(this).attr("src",imgPath.replace("off", "on"));
 },
 function () {
  // Grab the source
  var imgPath = $(this).attr("src");
  // Replace the path in the source
  $(this).attr("src",imgPath.replace("on", "off"));
  }
);
登录后复制

希望本文所述对大家的jQuery程序设计有所帮助。

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板