jQuery
【jQuery】テキストをズームするシンプルなjQueryプラグインZoomIn
October 4, 2017

ZoomInはテキストをズームするシンプルなjQueryプラグイン
CSS
<link rel="stylesheet" href="yourpath/jquery.zoomin.css" />
or
<link rel="stylesheet" href="yourpath/jquery.zoomin.min.css" />
JS
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="yourpath/jquery.zoomin.js"></script>
or
<script src="yourpath/jquery.zoomin.min.js"></script>
$( "#yourId" ).zoomin({ text: "I'm using the zoomin plugin!", onComplete: function () { console.log( "onComplete Callback Fired!" ); } });
MIT