jQuery+CSS3文字动画插件Morphext代码

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

以下是 jQuery+CSS3文字动画插件Morphext代码 的示例演示效果:

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

部分效果截图:

jQuery+CSS3文字动画插件Morphext代码

HTML代码(index.html):

<!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文字动画插件Morphext</title>
	<link rel="stylesheet" type="text/css" href="css/default.css">
	<link rel="stylesheet" href="css/animate.min.css">
    <style type="text/css">
		.morphext > .animated {
		    display: inline-block;
		}
		.content h3{font-weight: 300}
    </style>
	<!--[if IE]>
		<script src="http://libs.useso.com/js/html5shiv/3.7/html5shiv.min.js"></script>
	<![endif]-->
</head>
<body>
	<div class="container">
		<div class="content bgcolor-8">
			<h3 class="center">Morphext <span id="js-rotating1">So Simple, Very Doge, Much Wow, Such Cool</span> </h3>
			<h3 class="center">Photoshop是 <span id="js-rotating2">图像处理,作品设计,制作高质量图片</span> 的常用图像软件。</h3>
			<h3 class="center">你了解Photoshop中的 <span id="js-rotating3">通道的概念,通道于曲线,通道与色阶,通道与蒙版,通道与应用图像</span> 等命令吗?</h3>
		</div>
	</div>
	
	<script src="js/jquery-1.8.3.min.js"></script>
	<script src="js/morphext.min.js"></script>
	<script>
        $("#js-rotating1").Morphext({
           animation: "bounceOut"
        });
        $("#js-rotating2").Morphext({
            animation: "flip"
        });
        $("#js-rotating3").Morphext({
            animation: "lightSpeedIn"
        });
    </script>
</body>
</html>







JS代码(morphext.js):

/*! * Morphext - Text Rotating Plugin for jQuery * https://github.com/MrSaints/Morphext * * Built on jQuery Boilerplate * http://jqueryboilerplate.com/ * * Copyright 2014 Ian Lai and other contributors * Released under the MIT license * http://ian.mit-license.org/ */
/*eslint-env browser */
/*global jQuery:false */
/*eslint-disable no-underscore-dangle */
(function ($){
	"use strict";
	var pluginName = "Morphext",defaults ={
	animation:"bounceIn",separator:",",speed:2000,complete:$.noop}
;
	function Plugin (element,options){
	this.element = $(element);
	this.settings = $.extend({
}
,defaults,options);
	this._defaults = defaults;
	this._init();
}
Plugin.prototype ={
	_init:function (){
	var $that = this;
	this.phrases = [];
	this.element.addClass("morphext");
	$.each(this.element.text().split(this.settings.separator),function (key,value){
	$that.phrases.push(value.trim());
}
);
	this.index = -1;
	this.animate();
	this.start();
}
,animate:function (){
	if ((this.index + 1) === this.phrases.length){
	this.index = -1;
}
++this.index;
	this.element[0].innerHTML = "<span class=\"animated " + this.settings.animation + "\">" + this.phrases[this.index] + "</span>";
	if ($.isFunction(this.settings.complete)){
	this.settings.complete.call(this);
}
}
,start:function (){
	var $that = this;
	this._interval = setInterval(function (){
	$that.animate();
}
,this.settings.speed);
}
,stop:function (){
	this._interval = clearInterval(this._interval);
}
}
;
	$.fn[pluginName] = function (options){
	return this.each(function(){
	if (!$.data(this,"plugin_" + pluginName)){
	$.data(this,"plugin_" + pluginName,new Plugin(this,options));
}
}
);
}
;
}
)(jQuery);
	

CSS代码(morphext.css):

.morphext > .animated{display:inline-block;}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
39.75 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
打赏文章