正式釋出
簡單的倒數計時區塊
$title="2018暑假"; $date="2018-07-01"; $fontSize=22; $color="#FFFFFF"; //************************** 以下勿動 **************************// $rand=randStr(4); get_jquery(); echo " <link href='https://class.tn.edu.tw/modules/tad_web/class/Countdown/timeTo.css' rel='stylesheet' /> <script src='https://class.tn.edu.tw/modules/tad_web/class/Countdown/jquery.time-to.js'></script> <style> .timeTo ul li{color: {$color};} </style> <div class='text-center'> <div style='font-size: 1.5em; margin-bottom:10px;'>{$title}</div> <div id='countdown{$rand}'></div> </div> <script type='text/javascript'> $(function () { $('#countdown{$rand}').timeTo({ timeTo: new Date(new Date('{$date}')), displayDays: 3, theme: 'black', displayCaptions: true, fontSize: {$fontSize}, captionSize: 12, lang:'zh' }); }); </script>";
PHP腳本
左邊
正式釋出