jquery+css3提示工具代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 jquery+css3提示工具代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

jquery+css3提示工具代码

HTML代码(index.html):

<!DOCTYPE html>
<html>
<head>
    <title>jquery+css3提示工具</title>	
   <script src="js/jquery-1.6.3.min.js"></script>
    <script>
		$(document).ready(function(){
			$('[data-tooltip]').addClass('tooltip');
			$('.tooltip').each(function() {  
				$(this).append('<span class="tooltip-content">' + $(this).attr('data-tooltip') + '</span>');  
			});
			
			if ($.browser.msie && $.browser.version.substr(0,1)<7)
			{
			  $('.tooltip').mouseover(function(){
					$(this).children('.tooltip-content').css('visibility','visible');
				  }).mouseout(function(){
					$(this).children('.tooltip-content').css('visibility','hidden');
				  })
			}
		});
    </script>

    <style>	
	html {
		background: #eaeaea url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGkAAABpCAMAAAAOXP0IAAAAElBMVEXv7+/8/Pzm5uby8vL4+Pjr6+s8Y2RHAAAAiUlEQVR42u3ZMQrAMAgFUJPo/a/csQRKoRSEljc4OJhAHp8MRsQYPRVzrXlWzq3PtfW1tr6ezMZ4c9aT2b6b+l6PEydOnO6dsio7ipM8ceLE6ftOfb8GJ3nixInTH5wqszqKkzxx4sTp+059vwYneeLEiZO9hr2GPHHixMlew15Dnjhx4sTpavYAfp9zffLSX1UAAAAASUVORK5CYII=);
	}
	
	body {
		background: #eee;
		background: rgba(0,0,0,.05);
		border: 4px solid #fff;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;
		border-radius: 15px;		
		font: small 'trebuchet MS', Arial, Helvetica;
		margin: 30px auto 0 auto;
		padding: 20px;
		width: 400px;
	}	
	
	ol {
		margin: 0;
		*margin-left: 20px;
		padding: 0;
		list-style: decimal-leading-zero inside;
	}
	
	ol li {
		margin: 20px 0;
	}
    
	.tooltip {
		position: relative;
		display: inline-block;
		cursor: help;
		white-space: nowrap;
		border-bottom: 1px dotted #777;
	}
	
    .tooltip-content {
		opacity: 0;
        visibility: hidden;		
		font: 12px Arial, Helvetica;
		text-align: center;
        border-color: #aaa #555 #555 #aaa;
        border-style: solid;
        border-width: 1px;
		width: 150px;
        padding: 15px;
        position: absolute;
		bottom: 40px;
		left: 50%;
		margin-left: -76px;
		
        background-color: #fff;
		background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.1)), to(rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(rgba(0,0,0,.1), rgba(255,255,255,0));
		background-image: -moz-linear-gradient(rgba(0,0,0,.1), rgba(255,255,255,0));
		background-image: -ms-linear-gradient(rgba(0,0,0,.1), rgba(255,255,255,0));
		background-image: -o-linear-gradient(rgba(0,0,0,.1), rgba(255,255,255,0));
		background-image: linear-gradient(rgba(0,0,0,.1), rgba(255,255,255,0));		
        -moz-box-shadow: 1px 1px 0 #555,
					2px 2px 0 #555,
					3px 3px 1px rgba(0, 0, 0, .3),
					0 	1px 0 	rgba(255,255,255, .5) inset;
        -webkit-box-shadow: 1px 1px 0 #555,
					2px 2px 0 #555,
					3px 3px 1px rgba(0, 0, 0, .3),
					0 	1px 0 	rgba(255,255,255, .5) inset;
        box-shadow: 1px 1px 0 #555,
					2px 2px 0 #555,
					3px 3px 1px rgba(0, 0, 0, .3),
					0 	1px 0 	rgba(255,255,255, .5) inset;					
        -webkit-transition: bottom .2s ease, opacity .2s ease;
        -moz-transition: bottom .2s ease, opacity .2s ease;
        -ms-transition: bottom .2s ease, opacity .2s ease;
        -o-transition: bottom .2s ease, opacity .2s ease;
        transition: bottom .2s ease, opacity .2s ease;					
        }
        
    .tooltip-content:after,
    .tooltip-content:before {
        border-right: 16px solid transparent;
        border-top: 15px solid #fff;
        bottom: -15px;
        content: "";
        position: absolute;
        left: 50%;
        margin-left: -10px;
    }
    
    .tooltip-content:before {
        border-right-width: 25px;
        border-top-color: #555;
        border-top-width: 15px;
        bottom: -15px;
    }
	
	.tooltip:hover .tooltip-content{
		opacity: 1;
        visibility: visible;
		bottom: 30px;		
	}	
    </style>
</head>

<body>

	<h2>Best Xbox 360 Games 2013 (Gamespot)</h2>
	
	<ol>
		<li>
			<b data-tooltip="Action Role-Playing">Dark Souls</b>
		</li>
		<li>
			<b data-tooltip="Sci-Fi Shooter">Gears of War 3</b>
		</li>
		<li>
			<b data-tooltip="Role-Playing">The Elder Scrolls V: Skyrim</b>
		</li>
		<li>
			<b data-tooltip="Fantasy Action Adventure">Batman: Arkham City</b>
		</li>
		<li>
			<b data-tooltip="Soccer Sim">FIFA Soccer 12</b>
		</li>
		<li>
			<b data-tooltip="Rally / Offroad Racing">DiRT 3</b>
		</li>
		<li>
			<b data-tooltip="Adventure">L.A. Noire</b>
		</li>
		<li>
			<b data-tooltip="3D Platformer">Outland</b>
		</li>
		<li>
			<b data-tooltip="Action Role-Playing">Portal 2</b>
		</li>
		<li>
			<b data-tooltip="Beat-'Em-Up">The Dishwasher: Vampire Smile</b>
		</li>			
	</ol>
</body>
</html>








附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
32.10 KB
Html 动画效果1
最新结算
股权转让协议意向书模板
类型: .docx 金额: CNY 2.23¥ 状态: 待结算 详细>
股权转让协议意向书模板
类型: .docx 金额: CNY 0.28¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 2.39¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 0.3¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章