1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<script src='http://code.jquery.com/jquery-1.4.2.min.js'></script><script>$(function(){var str = $('#typewriter').text();var i = 0;var typing_inst = setInterval(typing, 100);function typing(){ if(i < str.length -1) { $('#typewriter').text(str.substr(0,i) + "_"); i++; } else if(i == str.length-1) { $('#typewriter').text(str); clearInterval(typing_inst); }}});</script><div id='typewriter'>嚕啦啦~嚕啦啦~嚕啦嚕啦咧~~</div>
1
using System.Management;
1 2 3
1. 開啟方案總管2. 選擇目前方案內的參考案右鍵 -> 加入參考3. 把 System.Management 和 System.Management.Instrumentation 加進參考內
1 2 3 4 5 6 7 8 9 10 11 12 13
<?phprequire('chinese.php'); $pdf=new PDF_Chinese();$pdf->AddPage();$pdf->Image('template.png', 0, 0, 216, 303);$pdf->AddBig5Font();$pdf->SetFont('Big5','B',16);$pdf->Text(70, 79, '呆子');$pdf->Output(); ?>