博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
鼠标移上,内容显示
阅读量:5244 次
发布时间:2019-06-14

本文共 2604 字,大约阅读时间需要 8 分钟。

1,单纯显示文本内容:

          html代码:

   
实现两边固定宽度,中间自适应宽度-
鼠标移到A上
View Code

     

         JS代码:

var isHover = false;     $(function() {    $(".a").hover(function() {        isHover = true;        $(".b").show();    }, function() {        isHover = false;        setTimeout(function() {            if (!isHover) {                $(".b").fadeOut();            }        }, 10);    });    $(".b").hover(function() {        isHover = true;    }, function() {        isHover = false;        $(".b").fadeOut();    });});
View Code

 

2,带图片变化

       效果图:

     

     HTML代码:      

View Code

   CSS代码:   

.buy_car{
margin-left: 20px; cursor: pointer; overflow: hidden; } .buy_car_spec{
width: 320px; height: 0px; background: #fff; position: absolute; left: -120px; top: 40px; z-index: 3; box-shadow: 0 2px 10px rgba(0,0,0,0.15);} .buy_car_spec p{
text-align: center; line-height: 100px; font-size: 12px; color: black; }
View Code

 

   JS代码:

$(function() {    //购物车切换图片    var isHover = false    var timer1 = null;    $(".buy_car_img").hover(function() {        isHover = true;        $(".buy_car_img").attr("src", "images/shopcarhover.png");        $(".buy_car_spec").animate({            height: 100        }, 200, function() {            $(".buy_car p").html("购物车中还没有商品,赶紧选购吧!");        });    }, function() {        isHover = false;        $(this).stop(timer1);        timer1 = setTimeout(function() {            if (!isHover) {                $(".buy_car_spec").animate({                    height: 0                }, 200, function() {                    $(".buy_car p").html("");                });                $(".buy_car_img").attr("src", "images/shopcar.png");            }        }, 200);    });    $(".buy_car_spec").hover(function() {        isHover = true;        $(".buy_car_img").attr("src", "images/shopcarhover.png");        $(".buy_car_spec").animate({            height: 100        }, 200, function() {            $(".buy_car p").html("购物车中还没有商品,赶紧选购吧!");        });    }, function() {        isHover = false;        $(this).stop(timer1);        timer1 = setTimeout(function() {            if (!isHover) {                $(".buy_car_spec").animate({                    height: 0                }, 200, function() {                    $(".buy_car p").html("");                });                $(".buy_car_img").attr("src", "images/shopcar.png");            }        }, 200);    });
View Code

 

 

   

    

转载于:https://www.cnblogs.com/147258llj/p/5542003.html

你可能感兴趣的文章
【程序执行原理】
查看>>
python的多行注释
查看>>
连接Oracle需要jar包和javadoc文档的下载
查看>>
UVA 10976 - Fractions Again?!
查看>>
Dreamweaver cc新版本css单行显示
查看>>
【android】安卓的权限提示及版本相关
查看>>
JavaScript可否多线程? 深入理解JavaScript定时机制
查看>>
IOS基础学习
查看>>
PHP 导出 Excell
查看>>
Java基础教程——网络基础知识
查看>>
Kruskal基础最小生成树
查看>>
浅谈算法和数据结构: 一 栈和队列
查看>>
Java内部类详解
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
图论-次短路求法
查看>>
What's New for Visual C# 6.0
查看>>
ExtJs学习笔记之ComboBox组件
查看>>
关于收费软件
查看>>
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>