基于jQuery创建鼠标悬停效果的方法_jquery
程序员文章站
2022-03-12 08:12:56
...
本文实例讲述了基于jQuery创建鼠标悬停效果的方法。分享给大家供大家参考。具体实现方法如下:
1. 创建HTML:
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程序设计有所帮助。
推荐阅读
-
基于jQuery的为attr添加id title等效果的实现代码_jquery
-
基于jquery创建的一个图片、视频缓冲的效果样式插件_jquery
-
jQuery页面倒计时并刷新效果的实现方法
-
基于JQuery的模拟苹果桌面Dock效果(稳定版)_jquery
-
基于jQuery的Tab选项框效果代码(插件)_jquery
-
基于jQuery实现的菜单切换效果_jquery
-
基于jquery实现的鼠标悬停提示案例
-
jquery动画3.创建一个带遮罩效果的图片走廊_jquery
-
jQuery使用eraser.js插件实现擦除、刮刮卡效果的方法【附eraser.js下载】
-
jquery实现动态创建form并提交的方法示例