jquery.stamper实现盖公章动画效果代码

代码语言:html

所属分类:动画

代码描述:jquery.stamper实现盖公章动画效果代码

代码标签: jquery stamper 公章 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE HTML>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery.stamper.js"></script>
    <style>
        .container{border:1px solid #ccc;width:980px;margin:0 auto;}
        	.container div{padding:6px;}
        	.title{text-align:center;font-size:2em;font-weight:bold;line-height:2em;}
        	.summary{text-align:right;line-height:2em;}
        	.content p{text-indent:2em;margin-top:1em;}
        	.content pre{background-color:#F5F5F5;border: 1px solid #CCCCCC;padding:6px;margin-left:2em;line-height:1.5em;display:block;white-space:pre-line;}
        	.stamper{padding-top:10px;height:100px;}
        	.stamper span{float:right;display:inline-block;height:100%;width:200px;}
    </style>
    <script>
        function demo_stamp(type) {
        		$(".stamper span.t" + type).stamper({
        			image : "//repo.bfw.wiki/bfwrepo/icon/62a664d7f1507.png",
        			scale : 3,
        			speed : 300,
        			complete : function() {
        				alert("完成啦~~~~");
        			}
        		});
        	}
    </script>
</head>

<body>
    <div class="container">
        <div class="title">jquery.stamper使用说明</div>
        <div class="summary">铁木箱子(biqiang.ma@gmail.com) V0.1</div>
        <div class="content">
            <h4>1、说明</h4>
            <p>
                jquery.stamper是一款模拟现实中盖章效果的jquery插件,通过动画的形式展现盖章效果。
                <a href="https://github.com/ferreousbox/jquery.stamper" target="_blank">访问GitHub项目库</a>!
            </p>

            <h4>2、使用</h4>
            &l.........完整代码请登录后点击上方下载按钮下载查看

网友评论0