所有文章
許多公司及大家最喜愛的客製化網頁設計,基隆網頁設計,台北網路行銷網站設計,關鍵字廣告,基隆電商電子商務網站,台北電商電子商務網站 ,基隆網頁設計,台北網站設計,google關鍵字廣告,網頁設計課程,專業的網頁設計團隊,多年的網頁設計經驗,提供各種主題風格的網頁設計。 基隆台北GOOGLE關鍵字廣告 台北基隆GOOGLE關鍵字廣告台北基隆網頁設計費用基隆台北網頁設計費用台北網頁設計價格台北客製化網站網頁設計價格基隆網頁設計費用基隆客製化網站網頁設計費用
客製化網頁設計,基隆網頁設計,台北網路行銷網站設計,關鍵字廣告,基隆電商電子商務網站,台北電商電子商務網站 ,基隆網頁設計,台北網站設計,google關鍵字廣告,網頁設計課程
首先,html的頁面錨點,就是只在同一個頁面,點擊連結,會滾動到上下方的位置,
如以下
頁面錨點語法
譬如我該頁面下方的留言位置,
設定的語法是
- <a name="commentform" id="commentform"></a>
這裡面有一段是 id="commentform" 那我設定一個連結是
- <a href="#commentform">移動到留言區域</a>
如底下按鈕 移動到留言區域 html語法
- <a href="#commentform">移動到留言區域</a>
css語法
- html {
- scroll-behavior: smooth;
- }
- :root {
- scroll-padding-top: 30px;
- }
現在開始很多人使用Laravel框架製作網站了,但有些人會發現,Laravel網站做好後,卻發現下方一直出現Laravel Debugbar
那要怎麼關閉
在網站根目錄開啟 .env
在最底部加入
- DEBUGBAR_ENABLED=false
就可以關閉這個功能了
當我們想要使用免費又好用的寄信伺服器,很多人會使用gmail來操作。
那網站要如何和gmail做結合,那就申請gmail API
申請網址
到主頁https://console.cloud.google.com/
建立專案
搜尋gmail API
建立憑證
如果你想增加一個計數器,該計數器在每次點擊連結時進行計數。 而不想使用資料庫,計數會保存到txt,只有一個連結說“單擊此處”,並且在連結旁邊顯示一個計數器,該計數器從0開始,每次單擊該連結時都會計數。並且其他用戶點擊的時候可以累計,就像youtube的點觀看計數懶功能。
建立php,譬如test.php,放入以下代碼執行,謝謝。
- <?php
- if(!file_exists('counter.txt')){
- file_put_contents('counter.txt', '0');
- }
- if($_GET['click'] == 'yes'){
- file_put_contents('counter.txt', ((int) file_get_contents('counter.txt')) + 1);
- header('Location: ' . $_SERVER['SCRIPT_NAME']);
- die;
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>counter example</title>
- </head>
- <body>
- <h1><?php echo file_get_contents('counter.txt'); ?></h1>
- <a href="?click=yes">clickMe</a>
- </body>
- </html>
頁面自動刷新代碼大全,基本上所有要求自動刷新頁面的代碼都有,大家可以自由發揮做出完美的頁面。
專業Google 關鍵字廣告文案寫作,專人Google廣告代操服務,展現出流量轉金流的最大化關鍵字廣告,台北Google廣告,台北Google代理商,關鍵字廣告, 台北 Google 關鍵字廣告,協助企業開通Google Ads帳戶在Google上做廣告。了解有關如何充分利用Google Ads的更多信息 台北基隆GOOGLE關鍵字廣告基隆台北網頁設計費用台北網頁設計價格基隆網頁設計費用
客製化網頁設計,基隆網頁設計,台北網路行銷網站設計,關鍵字廣告,基隆電商電子商務網站,台北電商電子商務網站 ,基隆網頁設計,台北網站設計,google關鍵字廣告,網頁設計課程
代碼一、js方法
- <script language="JavaScript">
- function myrefresh()
- {
- window.location.reload();
- }
- setTimeout('myrefresh()',3000); //指定3秒更新一次
- </script>
代碼二、純HTML
下方20指每隔20秒刷新一次頁面.- <meta http-equiv="refresh" content="20">
我覺得這個代碼方便好用
- <script type="text/javascript">
- function SetCwinHeight()
- {
- var iframeid=document.getElementById("mainframe"); //iframe id
- if (document.getElementById)
- {
- if (iframeid && !window.opera)
- {
- if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight)
- {
- iframeid.height = iframeid.contentDocument.body.offsetHeight;
- }else if(iframeid.Document && iframeid.Document.body.scrollHeight)
- {
- iframeid.height = iframeid.Document.body.scrollHeight;
- }
- }
- }
- }
- </script>
- <iframe src="https://adanaa.com/url/" name="mainframe" width="100%" marginwidth="0" marginheight="0" onload="Javascript:SetCwinHeight()" scrolling="No" frameborder="0" id="mainframe" ></iframe>
有些人會使用xampp架設網站,或者想要php加速優化,可以啟動php這個Zend Optimizer模組,又稱opcache優化的意思。
通堂在php\ext目錄裡面,有這幾個檔案php_opcache.dll, php\php.ini-production.ini
那就打開php.ini
貼入以下語法
- [opcache]
- zend_extension = "D:\xampp\php\ext\php_opcache.dll"
- opcache.memory_consumption=1024
- opcache.optimization_level=1
- opcache.interned_strings_buffer=8
- opcache.max_accelerated_files=4096
- opcache.revalidate_freq=60
- opcache.fast_shutdown=1
- opcache.enable=1
- opcache.enable_cli=1