前端JS特效第29波:jQuery鼠标经过星星显示特效

jQuery鼠标经过星星显示特效,先来看看效果:

部分核心的代码如下:

<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery鼠标经过星星显示特效 - PHP中文网</title>

<link rel="stylesheet" href="css/foundation.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link media="all" rel="stylesheet" href="css/all.css">

</head>
<body>
<section id="examples" class="example-box blue">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12 visible-md-block visible-lg-block">
			<pre><code class="javascript">
jQuery('#example-1').jstars({
image_path: 'images'  
});
			</code></pre>
		</div>
		<div class="col-md-6 col-sm-12">
			<h2>Example 1: White</h2>
			<p>This example illustrates "white" style. As you can see we do not specify any parameters, so style and frequency are set to "white" and "12" automatically.</p>
		</div>
		<div class="col-md-6 col-sm-12 visible-xs-block visible-sm-block">
			<pre><code class="javascript">
jQuery('#example-1').jstars({
image_path: 'images'  
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<section id="example-blue" class="example-box white">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12">
			<h2 style="color: #fff;">Example 2: Blue</h2>
			<p style="color: #fff;">This one illustrates "blue" style.</p>
			<p style="color: #fff;">Also we increased frequency a bit.</p>
		</div>
		<div class="col-md-6 col-sm-12">
			<pre><code class="javascript">
jQuery('#example-blue').jstars({
image_path: 'images',
style: 'blue',
frequency: 15
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<section id="example-yellow" class="example-box green">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12 visible-md-block visible-lg-block">
			<pre><code>
jQuery('#example-yellow').jstars({
image_path: 'images',
style: 'yellow',
frequency: 20
});
			</code></pre>
		</div>
		<div class="col-md-6 col-sm-12">
			<h2>Example 3: Yellow</h2>
			<p>This example illustrates "yellow" style.</p>
			<p>And the frequency is set to max value.</p>
		</div>
		<div class="col-md-6 col-sm-12 visible-xs-block visible-sm-block">
<pre><code>
jQuery('#example-yellow').jstars({
image_path: 'images',
style: 'yellow',
frequency: 20
});
			</code></pre>
		</div>
	</div>
</div>
</section>	

<section id="example-red" class="example-box white">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12">
			<h2 style="color: #fff;">Example 4: Red</h2>
			<p style="color: #fff;">This example illustrates "red" style.</p>
			<p style="color: #fff;">The frequency is low here, so the stars shine rarely.</p>
		</div>
		<div class="col-md-6 col-sm-12">
			<pre><code class="javascript">
jQuery('#example-red').jstars({
image_path: 'images',
style: 'red',
frequency: 5
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<section id="example-green" class="example-box blue">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12 visible-md-block visible-lg-block">
			<pre><code class="javascript">
jQuery('#example-green').jstars({
image_path: 'images',
style: 'green'
});
			</code></pre>
		</div>
		<div class="col-md-6 col-sm-12">
			<h2>Example 5: Green</h2>
			<p>This example illustrates "green" style.</p>
		</div>
		<div class="col-md-6 col-sm-12 visible-xs-block visible-sm-block">
			<pre><code class="javascript">
jQuery('#example-green').jstars({
image_path: 'images',
style: 'green'
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<section id="example-rand" class="example-box green">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12">
			<h2>Example 6: Red</h2>
			<p>Our plugin has tricky mode - to show all stars colors randomly.</p>
			<p>You should use style "rand" for this feature.</p>
		</div>
		<div class="col-md-6 col-sm-12">
			<pre><code class="javascript">
jQuery('#example-rand').jstars({
image_path: 'images',
style: 'rand'
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<section id="custom" class="example-box blue">
<div class="container">
	<div class="row">
		<div class="col-md-6 col-sm-12">
			<h2>Customize the image</h2>
			<p>You can try to prepare your own asset to display different image instead of stars.</p>
			<p>To do that you should make a sprite of 9 images, each next part is differ from previous with 40 degrees angle.</p>
			<p>Let's try how candy cane looks... It will be good for Xmas eve :)</p>
		</div>
		<div class="col-md-6 col-sm-12">
			<pre><code class="javascript">
jQuery('#example-rand').jstars({
image_path: 'images',
image: 'candy-cane-stars.png',
style: 'white',
width: 34,
height: 34,
delay: 700,
frequency: 5
});
			</code></pre>
		</div>
	</div>
</div>
</section>

<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap-3.3.4.js"></script>
<script src="js/highlight.min.js"></script>
<script type="text/javascript" src="js/jquery-stars.js"></script>
<script type="text/javascript" src="js/smothscrool.js"></script>
<script type="text/javascript" src="js/jquery.main.js"></script>

<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
<p>适用浏览器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. 不支持IE8及以下浏览器。</p>
<p>来源: PHP中文网</p>
</div>
</body>
</html>

全部代码:jQuery鼠标经过星星显示特效

  • 11
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值