jquery 鼠标滑过改变div背景或图片方法

jquery 鼠标滑过改变div背景或图片方法

jquery实现的鼠标滑过按钮改变背景图片,实现容器span等都可以通过动态改变css教程来实现哦。

$(document).ready(function () {
//按钮样式切换
$("#btFeedBack").hover(
function () {
$(this).removeClass("btFeed").addClass("btFeedhover");
},
function () {
$(this).removeClass("btFeedhover").addClass("btFeed");
}
);

});

jquery 鼠标滑过使指定层变色,实现容器span

接$('<li><spa...的 jQuery链
.hover(function(
$(this).parents("div.divbody").eq(0).css("background","颜色值");
//鼠标进入li发生的事情
),function(
//鼠标离开li发生的事情
));

jquery实现的鼠标滑过按钮改变背景图片

<div class="photo">
    <div class="heading"><span>Telephoto Lens</span></div>
    <img src="images/fall.jpg" width="350" height="233" alt="" />
    <div class="caption"><span>A lens for photographing distant objects; it is designed in a compact manner so that the distance from the front of the lens to the film plane is less than the focal length of the lens. </span></div>
</div>

css代码如下:

.photo {
    position:relative;
    font-family:arial;
    overflow:hidden;
    border:5px solid #000;
    width:350px;
    height:233px;
}
.photo .heading, .photo .caption {
    position:absolute;
    background:#000;
    height:50px;
    width:350px;
    opacity:0.6;
}
.photo .heading {
    top:-50px;
}
.photo .caption {
    bottom:-50px;
    left:0px;
}
.photo .heading span {
    color:#26c3e5;
    top:-50px;
    font-weight:bold;
    display:block;
    padding:5px 0 0 10px;
}
.photo .caption span {
    color:#999;
    font-size:9px;
    display:block;
    padding:5px 10px 0 10px;
}

jquery代码如下:

<script type="text/网页特效" src="js/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script>
    $(document).ready(function () {

        // transition effect
        style = 'easeOutQuart';

        // if the mouse hover the image
        $('.photo').hover(
            function() {
                //display heading and caption
                $(this).children('div:first').stop(false,true).animate({top:0},{duration:200, easing: style});
                $(this).children('div:last').stop(false,true).animate({bottom:0},{duration:200, easing: style});
            },

            function() {
                //hide heading and caption
                $(this).children('div:first').stop(false,true).animate({top:-50},{duration:200, easing: style});
                $(this).children('div:last').stop(false,true).animate({bottom:-50},{duration:200, easing: style});
            }
        );

    });
</script>

时间: 2024-09-24 08:29:12

jquery 鼠标滑过改变div背景或图片方法的相关文章

js-请问如何通过JS或者jQuery实现鼠标滑到某个div上 页面向左滑动 滑出则停止 向右同理

问题描述 请问如何通过JS或者jQuery实现鼠标滑到某个div上 页面向左滑动 滑出则停止 向右同理 如题. 我在页面上弄了两个div,一个是向左按钮一个是向右按钮. 页面属于左右滑动型. 如何实现鼠标滑到向左的那个div上 页面向左滑动 滑出则停止 向右同理? 谢谢各位大神!拜谢!! 拜托各位看清我的问题好吗,头两个答案根本牛头不对马嘴>.< 我说的是让页面滑动.另外,如果有代码最好--谢谢 解决方案 .on{height:50px;background:#eee}.dd{backgrou

JS实现鼠标滑过链接改变网页背景颜色的方法_javascript技巧

本文实例讲述了JS实现鼠标滑过链接改变网页背景颜色的方法.分享给大家供大家参考,具体如下: 这个小特效很不错,用链接改变网页背景色,鼠标放上链接文字上,网页背景就会跟着变换,想让你的主页更个性一点的朋友,这个代码一定能用上,其实你可在此基础上修改一下代码,改成鼠标放上文字切换样式表,这样整个网页就变了风格,是不是很实用? 运行效果截图如下: 在线演示地址如下: http://demo.jb51.net/js/2015/js-mouse-over-link-cha-bgcolor-demo/ 具体

jquery实现鼠标滑过小图时显示大图的方法

 这篇文章主要介绍了jquery实现鼠标滑过小图时显示大图的方法,涉及图片及鼠标操作的技巧,具有一定参考借鉴价值,需要的朋友可以参考下     本文实例讲述了jquery实现鼠标滑过小图时显示大图的方法.分享给大家供大家参考.具体实现方法如下:   代码如下: <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <

css实现鼠标滑过改变文字(中文变英文)

鼠标滑过改变文字的效果想必很多朋友都有遇到过吧,本文为大家介绍下css是如何实现的,感兴趣的朋友可以了解下   复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1

JQuery鼠标移到小图显示大图效果的方法_jquery

本文实例讲述了JQuery鼠标移到小图显示大图效果的方法.分享给大家供大家参考.具体分析如下: 这里的显示大图功能类似上一篇<JQuery实现超链接鼠标提示效果的方法>,稍微修改一下代码,就可以做出一个图片的提示效果. 参考前面的超链接提示效果的代码,只需要将创建的div元素的代码改为: //创建 div 元素 图片提示 var tooltip = "<div id="tooltip"><img src=""+ this.hr

js实现鼠标划过给div加透明度的方法

  本文实例讲述了js实现鼠标划过给div加透明度的方法.分享给大家供大家参考.具体实现方法如下: ? 1 2 3 4 5 6 7 8 9 10 <script language="javascript"> <!-- Begin if ((navigator.appName.indexOf('Microsoft')+1)) { document.write('<style type="text/css"> #div2 a img{ fi

js实现点击图片改变页面背景图的方法

 这篇文章主要介绍了js实现点击图片改变页面背景图的方法,实例分析了javascript操作css与图片的技巧,具有一定参考借鉴价值,需要的朋友可以参考下     本文实例讲述了js实现点击图片改变页面背景图的方法.分享给大家供大家参考.具体实现方法如下:   代码如下: <html> <head> <title>点击图片即改变页面的背景图片</title> </head> <body bgcolor="#FFFFFF"

js通过八个点 拖动改变div大小的实现方法

 本篇文章主要是对js通过八个点 拖动改变div大小的实现方法进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助  代码如下: <html>  <head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <title>Resize</title>  <style type="text/cs

js实现鼠标划过给div加透明度的方法_javascript技巧

本文实例讲述了js实现鼠标划过给div加透明度的方法.分享给大家供大家参考.具体实现方法如下: <script language="javascript"> <!-- Begin if ((navigator.appName.indexOf('Microsoft')+1)) { document.write('<style type="text/css"> #div2 a img{ filter:alpha(opacity=100)}