jquery+css3实现图片区域气泡标注说明

不多说,先看效果图

174104_61G0_2250969.png

主要应用于对图片的各个区域进行说明,当移动到指定的区域的时候弹出相应的详细说明。

主要js代码:

jQuery(function(){
				
    // initialize of labels
    $('.labels a#label1').fadeIn(100).effect('bounce', { times:3 }, 300, function() {
        $('.labels a#label2').fadeIn(100).effect('bounce', { times:3 }, 300, function() {
            $('.labels a#label3').fadeIn(100).effect('bounce', { times:3 }, 300, function() {
                $('.labels a#label4').fadeIn(100).effect('bounce', { times:3 }, 300, function() {
                    $('.labels a#label5').fadeIn(100).effect('bounce', { times:3 }, 300, function() {
                        $('.labels a#label6').fadeIn(100).effect('bounce', { times:3 }, 300);
                    });
                });
            });
        });
    });

    // description close
    $('.description .close').click(function() {
        $(this).parent().fadeOut(500);
        return false;
    });

    // display description on click by labels
    $('.labels a').click(function() {
        $('.description p').html( $(this).find('p').html() ).parent().fadeIn(500);
        return false;
    });

    // close dialog on click outside
    $('.container').click(function() {
        $('.description').fadeOut(500);
    });
	
});

Html代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery+css3图像标注悬浮说明</title>

<link rel="stylesheet" type="text/css" href="css/style.css">


<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script src="js/main.js"></script>

</head>
<body>

<div>
    <div>
        <a id="label1" href="#">沙发
        <p>一个沙发,家具是一项旨在座位不止一个人,并提供技术支持。</p>
            <span></span>
        </a>
        <a id="label2" href="#">电视
            <p>电视(电视)是一个电信媒体传输和接收移动图像,可以单色(黑白)或彩色,有或没有附带的声音。</p>
            <span></span>
        </a>
        <a id="label3" href="#">地毯
            <p>地毯的纺织地板上层附加到支持。</p>
            <span></span>
        </a>
        <a id="label4" href="#">椅子
            <p>椅子是家具设计的座位一个人的项目,并提供支持和武器。</p>
            <span></span>
        </a>
        <a id="label5" href="#">陈列柜
            <p>展示用于展示的东西在家里</p>
            <span></span>
        </a>
    </div>
    
    <div>
        <p></p>
        <a>X</a>
    </div>
</div>

</body>
</html>

实例演示Demo及下载:www.ui3g.com/code/uicode-326.html

转载于:https://my.oschina.net/ui3g/blog/330598

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值