\n
    \n
    Web Developer<\/div>\n <\/div>\n <\/body>\n<\/html><\/pre>\n

    為打字機文本容器設置樣式<\/p>\n

    現(xiàn)在我們有了網(wǎng)頁的布局,讓我們?yōu)榫哂小皌yped-out”類的

    <\/code>設置樣式:<\/p>\n
    .typed-out {\n  overflow: hidden;\n  border-right: .15em solid orange;\n  font-size: 1.6rem;\n  width: 0;\n}<\/pre>\n

    請注意,為了使打字機效果生效,我們添加了以下內容:<\/p>\n

      \n
    • \"overflow: hidden;\"<\/code> 和 \"width: 0;\"<\/code>,確保在打字效果開始之前不會顯示文本內容。<\/li>\n
    • \"border-right: .15em solid orange;\"<\/code>,創(chuàng)建打字機光標。<\/li>\n<\/ul>\n

      在制作打字效果之前,為了在完全打出typed-out<\/code>元素的最后一個字母后停止光標(就像打字機或文字處理器一樣),我們將為typed-out<\/code>元素創(chuàng)建一個容器并添加display: inline-block;<\/code>:<\/p>\n

      .container {\n  display: inline-block;\n}<\/pre>\n

      制作顯示文本動畫<\/p>\n

      打字機動畫將創(chuàng)建typed-out<\/code>元素內的文本逐字顯示的效果。我們將使用@keyframes<\/code> CSS動畫規(guī)則:<\/p>

      \n\n  \n    Typewriter effect<\/title>\n    <style>\n      body{\n        background: navajowhite;\n        background-size: cover;\n        font-family: 'Trebuchet MS', sans-serif; \n      }\n    <\/style>\n  <\/head>\n  <body>
      <h1><a href="http://ipnx.cn/">亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱</a></h1>\n    <div   id="wjcelcm34c"   class=\"container\">\n      <div   id="wjcelcm34c"   class=\"typed-out\">Web Developer<\/div>\n    <\/div>\n  <\/body>\n<\/html><\/pre>\n<p>如您所見,此動畫所做的只是將元素的寬度從0%更改為100%。<\/p>\n<p>現(xiàn)在,我們將此動畫包含在我們的<code>typed-out<\/code>類中,并將它的動畫方向設置為<code>forwards<\/code>,以確保動畫結束后文本元素不會返回到<code>width: 0<\/code>:<\/p>\n<pre class='brush:php;toolbar:false;'>.typed-out {\n  overflow: hidden;\n  border-right: .15em solid orange;\n  font-size: 1.6rem;\n  width: 0;\n}<\/pre>\n<p>我們的文本元素將以一種平滑的方式從左到右顯示:<\/p>\n<p>添加步驟以實現(xiàn)打字機效果<\/p>\n<p>到目前為止,我們的文本已顯示,但它是一種平滑的方式,不會逐字顯示文本。這是一個開始,但顯然它不像打字機效果那樣。<\/p>\n<p>為了使此動畫逐字或逐步顯示我們的文本元素(就像打字機一樣),我們需要將<code>typed-out<\/code>類包含的打字動畫分成幾步,以便使其看起來像是在打出一樣。這就是CSS <code>steps()<\/code>函數(shù)發(fā)揮作用的地方:<\/p>\n<pre class='brush:php;toolbar:false;'>.container {\n  display: inline-block;\n}<\/pre>\n<p>如您所見,我們使用CSS <code>steps()<\/code>函數(shù)將打字動畫分成20個步驟。<\/p>\n<p>調整步驟以獲得更長的打字效果<\/p>\n<p>要調整較長的文本,您需要增加打字動畫的步驟和持續(xù)時間。<\/p>\n<p>調整步驟以獲得更短的打字效果<\/p>\n<p>要調整較短的文本,您需要減少打字動畫的步驟和持續(xù)時間。<\/p>\n<p>制作和設置閃爍光標動畫<\/p>\n<p>顯然,最初的機械打字機沒有閃爍的光標,但將其添加進去以模仿更現(xiàn)代的計算機\/文字處理器的閃爍光標效果已成為傳統(tǒng)。閃爍的光標動畫有助于使打出的文本更能從靜態(tài)文本元素中脫穎而出。<\/p>\n<p>要向我們的打字機動畫添加閃爍的光標動畫,我們將首先創(chuàng)建閃爍動畫:<\/p>\n<pre class='brush:php;toolbar:false;'>@keyframes typing {\n  from { width: 0 }\n  to { width: 100% }\n}<\/pre>\n<p>在我們的網(wǎng)頁中,此動畫將把<code>typed-out<\/code>元素邊框(用作打字機效果的光標)的邊框顏色從透明更改為橙色。<\/p>\n<p>我們將此動畫包含在<code>typed-out<\/code>類的規(guī)則中,并將它的動畫方向屬性設置為<code>infinite<\/code>,以使光標每0.8秒無限期地消失和重新出現(xiàn):<\/p>\n<pre class='brush:php;toolbar:false;'>.typed-out{\n    overflow: hidden;\n    border-right: .15em solid orange;\n    white-space: nowrap;\n    font-size: 1.6rem;\n    width: 0;\n    animation: typing 1s forwards;\n}<\/pre>\n<p>調整閃爍打字效果的代碼<\/p>\n<p>我們可以通過調整其<code>border-right: .15em solid orange;<\/code>屬性來使光標更細或更粗,或者您可以使光標顏色不同,賦予它<code>border-radius<\/code>,調整其閃爍頻率等等。<\/p>\n<p>組合打字機文本動畫的元素<\/p>\n<p>現(xiàn)在您已經知道如何在CSS中制作打字機效果,是時候演示此打字效果的一些實用且相關的用例了。<\/p>\n<p>結論<\/p>\n<p>在本文中,我們了解了使用CSS創(chuàng)建動畫“打字機”文本是多么容易。這種打字效果絕對可以為您的網(wǎng)頁增添趣味和樂趣。<\/p><p>不過,也許值得最后溫和地警告一下。此技術最好用于少量非關鍵文本,只是為了增加一點額外的樂趣。但請注意不要過度依賴它,因為像這樣使用CSS動畫有一些局限性。請確保在各種設備和視口大小上測試您的打字機文本,因為結果可能因平臺而異。還要考慮一下依賴輔助技術的最終用戶,理想情況下,可以進行一些可用性測試,以確保您不會給用戶帶來不便。因為您可以使用純CSS來做一些事情并不一定意味著您應該這樣做。如果打字機效果對您很重要,并且您想將其用于更關鍵的內容,也許至少也要考慮一下JavaScript解決方案。<\/p>\n<p>無論如何,我希望您喜歡這篇文章,并且它讓您開始思考您可以使用CSS動畫做些什么其他很酷的事情,以增加您的網(wǎng)頁的趣味和樂趣。<\/p>\n<p>關于創(chuàng)建CSS打字機效果的常見問題<\/p>\n<p>最后,讓我們回答一些關于如何在CSS中創(chuàng)建打字機效果的最常見問題。<\/p>\n<ul>\n<li><strong>什么是打字機效果?<\/strong><\/li>\n<\/ul>\n<p>“打字機效果”是一種動畫技術,它使一串文本逐字出現(xiàn)在屏幕上,就像它正在由打字機實時打出一樣。此效果通常借助JavaScript創(chuàng)建,但也可以僅使用CSS實現(xiàn),如本文所示。<\/p>\n<ul>\n<li><strong>什么是打字機動畫?<\/strong><\/li>\n<\/ul>\n<p>打字機一次打印一個字母的文本。打字機動畫是一種模仿打字機打字的動畫,一次呈現(xiàn)一個字母的文字。它是許多網(wǎng)頁上流行的動畫效果。<\/p>\n<ul>\n<li><strong>如何在CSS中制作動畫文本打字?<\/strong><\/li>\n<\/ul>\n<p>現(xiàn)代CSS提供了各種創(chuàng)建動畫的工具,包括<code>animation<\/code>、<code>@keyframes<\/code>、<code>steps()<\/code>。這些工具用于逐漸顯示首先通過<code>overflow<\/code>屬性隱藏的文本。<\/p>\n<ul>\n<li><strong>如何使用CSS制作可自定義的打字機動畫?<\/strong><\/li>\n<\/ul>\n<p>使用CSS創(chuàng)建可自定義的打字機動畫涉及使用關鍵幀和CSS屬性來控制文本在屏幕上<q>打字<\/q>時的外觀和行為。您可以通過將一些動畫參數(shù)公開為CSS變量(自定義屬性)來使其可自定義,以便您可以輕松地在樣式表中更改它們。例如:<\/p>\n<pre class='brush:php;toolbar:false;'><!doctype html>\n<html>\n  <head>\n    <title>Typewriter effect<\/title>\n    <style>\n      body{\n        background: navajowhite;\n        background-size: cover;\n        font-family: 'Trebuchet MS', sans-serif; \n      }\n    <\/style>\n  <\/head>\n  <body>\n    <div   id="wjcelcm34c"   class=\"container\">\n      <div   id="wjcelcm34c"   class=\"typed-out\">Web Developer<\/div>\n    <\/div>\n  <\/body>\n<\/html><\/pre>\n<p>在此CSS代碼中,我們定義了自定義屬性(<code>--typewriter-text<\/code>和<code>--typewriter-duration<\/code>)以使動畫可自定義。您可以通過修改這些屬性來更改默認值。<\/p>\n<ul>\n<li><strong>如何在完全打出<code>typed-out<\/code>元素的最后一個字母后停止光標?<\/strong><\/li>\n<\/ul>\n<p>要在CSS打字機動畫中停止<code>typed-out<\/code>元素的最后一個字母的光標,您可以使用CSS動畫和<code>animation-fill-mode<\/code>屬性:<\/p><pre class='brush:php;toolbar:false;'><!doctype html>\n<html>\n  <head>\n    <title>Typewriter effect<\/title>\n    <style>\n      body{\n        background: navajowhite;\n        background-size: cover;\n        font-family: 'Trebuchet MS', sans-serif; \n      }\n    <\/style>\n  <\/head>\n  <body>\n    <div   id="wjcelcm34c"   class=\"container\">\n      <div   id="wjcelcm34c"   class=\"typed-out\">Web Developer<\/div>\n    <\/div>\n  <\/body>\n<\/html><\/pre>\n<p>在上面的CSS中,打字機動畫逐漸增加<code>.typewriter<\/code>容器內元素的寬度,有效地打出文本。<code>animation-fill-mode<\/code>屬性設置為<code>forwards<\/code>以確保動畫在完成之后保持最終狀態(tài)(完全打出)。通過此設置,光標將在完全打出<code>typed-out<\/code>元素的最后一個字母后在其處閃爍。<\/p>\n<ul>\n<li><strong>有哪些有效使用打字機效果的網(wǎng)站示例?<\/strong><\/li>\n<\/ul>\n<p>打字機動畫通常用于諸如投資組合網(wǎng)站之類的網(wǎng)站,尤其是在設計師和開發(fā)人員的網(wǎng)站上,它們用于突出關鍵技能并為頁面增添創(chuàng)意感,從而吸引讀者的注意力。打字機效果有時也用于博客網(wǎng)站和登錄頁面以及產品演示中。<\/p>\n<\/div><\/code><\/p>"}	</script>
      	
      <meta http-equiv="Cache-Control" content="no-transform" />
      <meta http-equiv="Cache-Control" content="no-siteapp" />
      <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
      </head>
      
      <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
      	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
      <header>
          <div   id="wjcelcm34c"   class="head">
              <div   id="wjcelcm34c"   class="haed_left">
                  <div   id="wjcelcm34c"   class="haed_logo">
                      <a href="http://ipnx.cn/zh/" title="" class="haed_logo_a">
                          <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                      </a>
                  </div>
                  <div   id="wjcelcm34c"   class="head_nav">
                      <div   id="wjcelcm34c"   class="head_navs">
                          <a href="javascript:;" title="社區(qū)" class="head_nava head_nava-template1">社區(qū)</a>
                          <div   class="wjcelcm34c"   id="dropdown-template1" style="display: none;">
                              <div   id="wjcelcm34c"   class="languagechoose">
                                  <a href="http://ipnx.cn/zh/article.html" title="文章" class="languagechoosea on">文章</a>
                                  <a href="http://ipnx.cn/zh/faq/zt" title="合集" class="languagechoosea">合集</a>
                                  <a href="http://ipnx.cn/zh/wenda.html" title="問答" class="languagechoosea">問答</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="wjcelcm34c"   class="head_navs">
                          <a href="javascript:;" title="學習" class="head_nava head_nava-template1_1">學習</a>
                          <div   class="wjcelcm34c"   id="dropdown-template1_1" style="display: none;">
                              <div   id="wjcelcm34c"   class="languagechoose">
                                  <a href="http://ipnx.cn/zh/course.html" title="課程" class="languagechoosea on">課程</a>
                                  <a href="http://ipnx.cn/zh/dic/" title="編程詞典" class="languagechoosea">編程詞典</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="wjcelcm34c"   class="head_navs">
                          <a href="javascript:;" title="工具庫" class="head_nava head_nava-template1_2">工具庫</a>
                          <div   class="wjcelcm34c"   id="dropdown-template1_2" style="display: none;">
                              <div   id="wjcelcm34c"   class="languagechoose">
                                  <a href="http://ipnx.cn/zh/toolset/development-tools" title="開發(fā)工具" class="languagechoosea on">開發(fā)工具</a>
                                  <a href="http://ipnx.cn/zh/toolset/website-source-code" title="網(wǎng)站源碼" class="languagechoosea">網(wǎng)站源碼</a>
                                  <a href="http://ipnx.cn/zh/toolset/php-libraries" title="PHP 庫" class="languagechoosea">PHP 庫</a>
                                  <a href="http://ipnx.cn/zh/toolset/js-special-effects" title="JS特效" class="languagechoosea on">JS特效</a>
                                  <a href="http://ipnx.cn/zh/toolset/website-materials" title="網(wǎng)站素材" class="languagechoosea on">網(wǎng)站素材</a>
                                  <a href="http://ipnx.cn/zh/toolset/extension-plug-ins" title="擴展插件" class="languagechoosea on">擴展插件</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="wjcelcm34c"   class="head_navs">
                          <a href="http://ipnx.cn/zh/ai" title="AI工具" class="head_nava head_nava-template1_3">AI工具</a>
                      </div>
      
                      <div   id="wjcelcm34c"   class="head_navs">
                          <a href="javascript:;" title="休閑" class="head_nava head_nava-template1_3">休閑</a>
                          <div   class="wjcelcm34c"   id="dropdown-template1_3" style="display: none;">
                              <div   id="wjcelcm34c"   class="languagechoose">
                                  <a href="http://ipnx.cn/zh/game" title="游戲下載" class="languagechoosea on">游戲下載</a>
                                  <a href="http://ipnx.cn/zh/mobile-game-tutorial/" title="游戲教程" class="languagechoosea">游戲教程</a>
      
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
                          <div   id="wjcelcm34c"   class="head_search">
                      <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('zh')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                      <a href="javascript:;" title="搜索"  onclick="searchs('zh')"><img src="/static/imghw/find.png" alt="搜索"></a>
                  </div>
                      <div   id="wjcelcm34c"   class="head_right">
                  <div   id="wjcelcm34c"   class="haed_language">
                      <a href="javascript:;" class="layui-btn haed_language_btn">簡體中文<i class="layui-icon layui-icon-triangle-d"></i></a>
                      <div   class="wjcelcm34c"   id="dropdown-template" style="display: none;">
                          <div   id="wjcelcm34c"   class="languagechoose">
                                                      <a href="javascript:;" title="簡體中文" class="languagechoosea">簡體中文</a>
                                                      <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                      <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                      <a href="javascript:setlang('ja');" title="日本語" class="languagechoosea">日本語</a>
                                                      <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                      <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                      <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                      <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                  </div>
                      </div>
                  </div>
                  <span id="wjcelcm34c"    class="head_right_line"></span>
                                  <div style="display: block;" id="login" class="haed_login ">
                          <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                      </div>
                      <div style="display: block;" id="reg" class="head_signup login">
                          <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                      </div>
                  
              </div>
          </div>
      </header>
      
      	
      	<main>
      		<div   id="wjcelcm34c"   class="Article_Details_main">
      			<div   id="wjcelcm34c"   class="Article_Details_main1">
      							<div   id="wjcelcm34c"   class="Article_Details_main1M">
      					<div   id="wjcelcm34c"   class="phpgenera_Details_mainL1">
      						<a href="http://ipnx.cn/zh/" title="首頁"
      							class="phpgenera_Details_mainL1a">首頁</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://ipnx.cn/zh/web-designer.html"
      							class="phpgenera_Details_mainL1a">web前端</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://ipnx.cn/zh/css-tutorial.html"
      							class="phpgenera_Details_mainL1a">css教程</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      						<span>如何為您的網(wǎng)站創(chuàng)建CSS打字機效應</span>
      					</div>
      					
      					<div   id="wjcelcm34c"   class="Articlelist_txts">
      						<div   id="wjcelcm34c"   class="Articlelist_txts_info">
      							<h1 class="Articlelist_txts_title">如何為您的網(wǎng)站創(chuàng)建CSS打字機效應</h1>
      							<div   id="wjcelcm34c"   class="Articlelist_txts_info_head">
      								<div   id="wjcelcm34c"   class="author_info">
      									<a href="http://ipnx.cn/zh/member/1242473.html"  class="author_avatar">
      									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/001/242/473/646b03ec7509a724.jpg" src="/static/imghw/default1.png" alt="Jack chen">
      									</a>
      									<div   id="wjcelcm34c"   class="author_detail">
      																			<a href="http://ipnx.cn/zh/member/1242473.html" class="author_name">Jack chen</a>
                                      										</div>
      								</div>
                      			</div>
      							<span id="wjcelcm34c"    class="Articlelist_txts_time">Feb 08, 2025 am	 10:20 AM</span>
      														
      						</div>
      					</div>
      					<hr />
      					<div   id="wjcelcm34c"   class="article_main php-article">
      						<div   id="wjcelcm34c"   class="article-list-left detail-content-wrap content">
      						<ins class="adsbygoogle"
      							style="display:block; text-align:center;"
      							data-ad-layout="in-article"
      							data-ad-format="fluid"
      							data-ad-client="ca-pub-5902227090019525"
      							data-ad-slot="3461856641">
      						</ins>
      						
      
      					<p>純CSS打造引人入勝的打字機文本效果</p>
      <p><strong>核心要點:</strong></p>
      <ul>
      <li>CSS打字機效果通過逐步顯示文本,使網(wǎng)站內容更具活力和吸引力,可用于登錄頁面、個人網(wǎng)站和代碼演示。</li>
      <li>打字機效果可通過使用CSS <code>steps()</code>函數(shù)將文本元素的寬度從0%更改為100%,并通過動畫模擬“打出”文本的光標來創(chuàng)建。</li>
      <li>可以通過增加或減少打字動畫的步數(shù)和持續(xù)時間來調整打字效果,以適應較長或較短的文本。</li>
      <li>打字機效果可以與閃爍的光標動畫結合使用以增強效果,并且可以通過調整其<code>border-right</code>屬性、顏色、閃爍頻率等來自定義光標。</li>
      </ul>
      <p>本文將指導您如何使用純CSS創(chuàng)建動態(tài)、更具吸引力的網(wǎng)站文本打字機效果。</p>
      <p>打字機效果模擬文本逐字顯示,如同在您眼前實時打字一般。</p>
      <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173898121699865.jpg" class="lazy" alt="How to Create a CSS Typewriter Effect for Your Website "></p>
      <p>在文本片段中添加打字機效果有助于吸引網(wǎng)站訪問者,并保持他們繼續(xù)閱讀的興趣。打字機效果可用于多種用途,例如制作引人入勝的登錄頁面、號召性用語元素、個人網(wǎng)站和代碼演示。</p>
      <p>輕松創(chuàng)建打字機效果</p>
      <p>創(chuàng)建打字機效果非常簡單,您只需要具備CSS和CSS動畫的基礎知識即可理解本教程。</p>
      <p>打字機效果的工作原理如下:</p>
      <ul>
      <li>打字機動畫將通過使用CSS <code>steps()</code>函數(shù)逐步將文本元素的寬度從0%更改為100%,從而顯示我們的文本元素。</li>
      <li>閃爍動畫將模擬“打出”文本的光標。</li>
      </ul>
      <p>創(chuàng)建打字機效果網(wǎng)頁</p>
      <p>首先,讓我們?yōu)榇蜃謾C演示創(chuàng)建一個網(wǎng)頁。它將包含一個用于打字機文本的<code><div>容器,其類名為<code>typed-out</code>:
      <pre class='brush:php;toolbar:false;'><!doctype html>
      <html>
        <head>
          <title>Typewriter effect</title>
          <style>
            body{
              background: navajowhite;
              background-size: cover;
              font-family: 'Trebuchet MS', sans-serif; 
            }
          </style>
        </head>
        <body>
          <div class="container">
            <div class="typed-out">Web Developer</div>
          </div>
        </body>
      </html></pre>
      <p>為打字機文本容器設置樣式</p>
      <p>現(xiàn)在我們有了網(wǎng)頁的布局,讓我們?yōu)榫哂小皌yped-out”類的<code><div></code>設置樣式:</p>
      <pre class='brush:php;toolbar:false;'>.typed-out {
        overflow: hidden;
        border-right: .15em solid orange;
        font-size: 1.6rem;
        width: 0;
      }</pre>
      <p>請注意,為了使打字機效果生效,我們添加了以下內容:</p>
      <ul>
      <li><code>"overflow: hidden;"</code> 和 <code>"width: 0;"</code>,確保在打字效果開始之前不會顯示文本內容。</li>
      <li><code>"border-right: .15em solid orange;"</code>,創(chuàng)建打字機光標。</li>
      </ul>
      <p>在制作打字效果之前,為了在完全打出<code>typed-out</code>元素的最后一個字母后停止光標(就像打字機或文字處理器一樣),我們將為<code>typed-out</code>元素創(chuàng)建一個容器并添加<code>display: inline-block;</code>:</p>
      <pre class='brush:php;toolbar:false;'>.container {
        display: inline-block;
      }</pre>
      <p>制作顯示文本動畫</p>
      <p>打字機動畫將創(chuàng)建<code>typed-out</code>元素內的文本逐字顯示的效果。我們將使用<code>@keyframes</code> CSS動畫規(guī)則:</p><pre class='brush:php;toolbar:false;'><!doctype html>
      <html>
        <head>
          <title>Typewriter effect</title>
          <style>
            body{
              background: navajowhite;
              background-size: cover;
              font-family: 'Trebuchet MS', sans-serif; 
            }
          </style>
        </head>
        <body>
          <div class="container">
            <div class="typed-out">Web Developer</div>
          </div>
        </body>
      </html></pre>
      <p>如您所見,此動畫所做的只是將元素的寬度從0%更改為100%。</p>
      <p>現(xiàn)在,我們將此動畫包含在我們的<code>typed-out</code>類中,并將它的動畫方向設置為<code>forwards</code>,以確保動畫結束后文本元素不會返回到<code>width: 0</code>:</p>
      <pre class='brush:php;toolbar:false;'>.typed-out {
        overflow: hidden;
        border-right: .15em solid orange;
        font-size: 1.6rem;
        width: 0;
      }</pre>
      <p>我們的文本元素將以一種平滑的方式從左到右顯示:</p>
      <p>添加步驟以實現(xiàn)打字機效果</p>
      <p>到目前為止,我們的文本已顯示,但它是一種平滑的方式,不會逐字顯示文本。這是一個開始,但顯然它不像打字機效果那樣。</p>
      <p>為了使此動畫逐字或逐步顯示我們的文本元素(就像打字機一樣),我們需要將<code>typed-out</code>類包含的打字動畫分成幾步,以便使其看起來像是在打出一樣。這就是CSS <code>steps()</code>函數(shù)發(fā)揮作用的地方:</p>
      <pre class='brush:php;toolbar:false;'>.container {
        display: inline-block;
      }</pre>
      <p>如您所見,我們使用CSS <code>steps()</code>函數(shù)將打字動畫分成20個步驟。</p>
      <p>調整步驟以獲得更長的打字效果</p>
      <p>要調整較長的文本,您需要增加打字動畫的步驟和持續(xù)時間。</p>
      <p>調整步驟以獲得更短的打字效果</p>
      <p>要調整較短的文本,您需要減少打字動畫的步驟和持續(xù)時間。</p>
      <p>制作和設置閃爍光標動畫</p>
      <p>顯然,最初的機械打字機沒有閃爍的光標,但將其添加進去以模仿更現(xiàn)代的計算機/文字處理器的閃爍光標效果已成為傳統(tǒng)。閃爍的光標動畫有助于使打出的文本更能從靜態(tài)文本元素中脫穎而出。</p>
      <p>要向我們的打字機動畫添加閃爍的光標動畫,我們將首先創(chuàng)建閃爍動畫:</p>
      <pre class='brush:php;toolbar:false;'>@keyframes typing {
        from { width: 0 }
        to { width: 100% }
      }</pre>
      <p>在我們的網(wǎng)頁中,此動畫將把<code>typed-out</code>元素邊框(用作打字機效果的光標)的邊框顏色從透明更改為橙色。</p>
      <p>我們將此動畫包含在<code>typed-out</code>類的規(guī)則中,并將它的動畫方向屬性設置為<code>infinite</code>,以使光標每0.8秒無限期地消失和重新出現(xiàn):</p>
      <pre class='brush:php;toolbar:false;'>.typed-out{
          overflow: hidden;
          border-right: .15em solid orange;
          white-space: nowrap;
          font-size: 1.6rem;
          width: 0;
          animation: typing 1s forwards;
      }</pre>
      <p>調整閃爍打字效果的代碼</p>
      <p>我們可以通過調整其<code>border-right: .15em solid orange;</code>屬性來使光標更細或更粗,或者您可以使光標顏色不同,賦予它<code>border-radius</code>,調整其閃爍頻率等等。</p>
      <p>組合打字機文本動畫的元素</p>
      <p>現(xiàn)在您已經知道如何在CSS中制作打字機效果,是時候演示此打字效果的一些實用且相關的用例了。</p>
      <p>結論</p>
      <p>在本文中,我們了解了使用CSS創(chuàng)建動畫“打字機”文本是多么容易。這種打字效果絕對可以為您的網(wǎng)頁增添趣味和樂趣。</p><p>不過,也許值得最后溫和地警告一下。此技術最好用于少量非關鍵文本,只是為了增加一點額外的樂趣。但請注意不要過度依賴它,因為像這樣使用CSS動畫有一些局限性。請確保在各種設備和視口大小上測試您的打字機文本,因為結果可能因平臺而異。還要考慮一下依賴輔助技術的最終用戶,理想情況下,可以進行一些可用性測試,以確保您不會給用戶帶來不便。因為您可以使用純CSS來做一些事情并不一定意味著您應該這樣做。如果打字機效果對您很重要,并且您想將其用于更關鍵的內容,也許至少也要考慮一下JavaScript解決方案。</p>
      <p>無論如何,我希望您喜歡這篇文章,并且它讓您開始思考您可以使用CSS動畫做些什么其他很酷的事情,以增加您的網(wǎng)頁的趣味和樂趣。</p>
      <p>關于創(chuàng)建CSS打字機效果的常見問題</p>
      <p>最后,讓我們回答一些關于如何在CSS中創(chuàng)建打字機效果的最常見問題。</p>
      <ul>
      <li><strong>什么是打字機效果?</strong></li>
      </ul>
      <p>“打字機效果”是一種動畫技術,它使一串文本逐字出現(xiàn)在屏幕上,就像它正在由打字機實時打出一樣。此效果通常借助JavaScript創(chuàng)建,但也可以僅使用CSS實現(xiàn),如本文所示。</p>
      <ul>
      <li><strong>什么是打字機動畫?</strong></li>
      </ul>
      <p>打字機一次打印一個字母的文本。打字機動畫是一種模仿打字機打字的動畫,一次呈現(xiàn)一個字母的文字。它是許多網(wǎng)頁上流行的動畫效果。</p>
      <ul>
      <li><strong>如何在CSS中制作動畫文本打字?</strong></li>
      </ul>
      <p>現(xiàn)代CSS提供了各種創(chuàng)建動畫的工具,包括<code>animation</code>、<code>@keyframes</code>、<code>steps()</code>。這些工具用于逐漸顯示首先通過<code>overflow</code>屬性隱藏的文本。</p>
      <ul>
      <li><strong>如何使用CSS制作可自定義的打字機動畫?</strong></li>
      </ul>
      <p>使用CSS創(chuàng)建可自定義的打字機動畫涉及使用關鍵幀和CSS屬性來控制文本在屏幕上<q>打字</q>時的外觀和行為。您可以通過將一些動畫參數(shù)公開為CSS變量(自定義屬性)來使其可自定義,以便您可以輕松地在樣式表中更改它們。例如:</p>
      <pre class='brush:php;toolbar:false;'><!doctype html>
      <html>
        <head>
          <title>Typewriter effect</title>
          <style>
            body{
              background: navajowhite;
              background-size: cover;
              font-family: 'Trebuchet MS', sans-serif; 
            }
          </style>
        </head>
        <body>
          <div class="container">
            <div class="typed-out">Web Developer</div>
          </div>
        </body>
      </html></pre>
      <p>在此CSS代碼中,我們定義了自定義屬性(<code>--typewriter-text</code>和<code>--typewriter-duration</code>)以使動畫可自定義。您可以通過修改這些屬性來更改默認值。</p>
      <ul>
      <li><strong>如何在完全打出<code>typed-out</code>元素的最后一個字母后停止光標?</strong></li>
      </ul>
      <p>要在CSS打字機動畫中停止<code>typed-out</code>元素的最后一個字母的光標,您可以使用CSS動畫和<code>animation-fill-mode</code>屬性:</p><pre class='brush:php;toolbar:false;'><!doctype html>
      <html>
        <head>
          <title>Typewriter effect</title>
          <style>
            body{
              background: navajowhite;
              background-size: cover;
              font-family: 'Trebuchet MS', sans-serif; 
            }
          </style>
        </head>
        <body>
          <div class="container">
            <div class="typed-out">Web Developer</div>
          </div>
        </body>
      </html></pre>
      <p>在上面的CSS中,打字機動畫逐漸增加<code>.typewriter</code>容器內元素的寬度,有效地打出文本。<code>animation-fill-mode</code>屬性設置為<code>forwards</code>以確保動畫在完成之后保持最終狀態(tài)(完全打出)。通過此設置,光標將在完全打出<code>typed-out</code>元素的最后一個字母后在其處閃爍。</p>
      <ul>
      <li><strong>有哪些有效使用打字機效果的網(wǎng)站示例?</strong></li>
      </ul>
      <p>打字機動畫通常用于諸如投資組合網(wǎng)站之類的網(wǎng)站,尤其是在設計師和開發(fā)人員的網(wǎng)站上,它們用于突出關鍵技能并為頁面增添創(chuàng)意感,從而吸引讀者的注意力。打字機效果有時也用于博客網(wǎng)站和登錄頁面以及產品演示中。</p>
      </div></code></p><p>以上是如何為您的網(wǎng)站創(chuàng)建CSS打字機效應的詳細內容。更多信息請關注PHP中文網(wǎng)其他相關文章!</p>
      
      
      						</div>
      					</div>
      					<div   id="wjcelcm34c"   class="wzconShengming_sp">
      						<div   id="wjcelcm34c"   class="bzsmdiv_sp">本站聲明</div>
      						<div>本文內容由網(wǎng)友自發(fā)貢獻,版權歸原作者所有,本站不承擔相應法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權的內容,請聯(lián)系admin@php.cn</div>
      					</div>
      				</div>
      
      				<ins class="adsbygoogle"
           style="display:block"
           data-ad-format="autorelaxed"
           data-ad-client="ca-pub-5902227090019525"
           data-ad-slot="2507867629"></ins>
      
      
      
      				<div   id="wjcelcm34c"   class="AI_ToolDetails_main4sR">
      
      
      				<ins class="adsbygoogle"
              style="display:block"
              data-ad-client="ca-pub-5902227090019525"
              data-ad-slot="3653428331"
              data-ad-format="auto"
              data-full-width-responsive="true"></ins>
          
      
      
      					<!-- <div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
      						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
      							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門文章</h2>
      							</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 個月前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796832397.html" title="Grass Wonder Build Guide |烏瑪媽媽漂亮的德比" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide |烏瑪媽媽漂亮的德比</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796833110.html" title="<??>:在森林里99夜 - 所有徽章以及如何解鎖" class="phpgenera_Details_mainR4_bottom_title"><??>:在森林里99夜 - 所有徽章以及如何解鎖</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796831605.html" title="烏瑪?shù)姆劢z漂亮的德比橫幅日程(2025年7月)" class="phpgenera_Details_mainR4_bottom_title">烏瑪?shù)姆劢z漂亮的德比橫幅日程(2025年7月)</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796828810.html" title="NYT'連接”提示7月2日,星期三:今天游戲的線索和答案" class="phpgenera_Details_mainR4_bottom_title">NYT'連接”提示7月2日,星期三:今天游戲的線索和答案</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 個月前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      														</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
      								<a href="http://ipnx.cn/zh/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div> -->
      
      
      											<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3">
      							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
      								<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>熱AI工具</h2>
      								</div>
      								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
      													<h3>Undress AI Tool</h3>
      												</a>
      												<p>免費脫衣服圖片</p>
      											</div>
      										</div>
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
      													<h3>Undresser.AI Undress</h3>
      												</a>
      												<p>人工智能驅動的應用程序,用于創(chuàng)建逼真的裸體照片</p>
      											</div>
      										</div>
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
      													<h3>AI Clothes Remover</h3>
      												</a>
      												<p>用于從照片中去除衣服的在線人工智能工具。</p>
      											</div>
      										</div>
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
      													<h3>Clothoff.io</h3>
      												</a>
      												<p>AI脫衣機</p>
      											</div>
      										</div>
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
      													<h3>Video Face Swap</h3>
      												</a>
      												<p>使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉!</p>
      											</div>
      										</div>
      																</div>
      								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
      									<a href="http://ipnx.cn/zh/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      					
      
      
      					<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
      						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
      							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門文章</h2>
      							</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 個月前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796832397.html" title="Grass Wonder Build Guide |烏瑪媽媽漂亮的德比" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide |烏瑪媽媽漂亮的德比</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796833110.html" title="<??>:在森林里99夜 - 所有徽章以及如何解鎖" class="phpgenera_Details_mainR4_bottom_title"><??>:在森林里99夜 - 所有徽章以及如何解鎖</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796831605.html" title="烏瑪?shù)姆劢z漂亮的德比橫幅日程(2025年7月)" class="phpgenera_Details_mainR4_bottom_title">烏瑪?shù)姆劢z漂亮的德比橫幅日程(2025年7月)</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 周前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/1796828810.html" title="NYT'連接”提示7月2日,星期三:今天游戲的線索和答案" class="phpgenera_Details_mainR4_bottom_title">NYT'連接”提示7月2日,星期三:今天游戲的線索和答案</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 個月前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      														</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
      								<a href="http://ipnx.cn/zh/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div>
      
      
      											<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3">
      							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
      								<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>熱工具</h2>
      								</div>
      								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="記事本++7.3.1" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_title">
      													<h3>記事本++7.3.1</h3>
      												</a>
      												<p>好用且免費的代碼編輯器</p>
      											</div>
      										</div>
      																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3漢化版" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3漢化版</h3>
      												</a>
      												<p>中文版,非常好用</p>
      											</div>
      										</div>
      																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="禪工作室 13.0.1" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_title">
      													<h3>禪工作室 13.0.1</h3>
      												</a>
      												<p>功能強大的PHP集成開發(fā)環(huán)境</p>
      											</div>
      										</div>
      																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
      													<h3>Dreamweaver CS6</h3>
      												</a>
      												<p>視覺化網(wǎng)頁開發(fā)工具</p>
      											</div>
      										</div>
      																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
      											<a href="http://ipnx.cn/zh/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac版" />
      											</a>
      											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
      												<a href="http://ipnx.cn/zh/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3 Mac版</h3>
      												</a>
      												<p>神級代碼編輯軟件(SublimeText3)</p>
      											</div>
      										</div>
      																	</div>
      								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
      									<a href="http://ipnx.cn/zh/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      										
      
      					
      					<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
      						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
      							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門話題</h2>
      							</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/laravel-tutori" title="Laravel 教程" class="phpgenera_Details_mainR4_bottom_title">Laravel 教程</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1597</span>
      										</div>
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>29</span>
      										</div>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/php-tutorial" title="PHP教程" class="phpgenera_Details_mainR4_bottom_title">PHP教程</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1488</span>
      										</div>
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>72</span>
      										</div>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/nytminicrosswordanswe" title="NYT迷你填字游戲答案" class="phpgenera_Details_mainR4_bottom_title">NYT迷你填字游戲答案</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>268</span>
      										</div>
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>587</span>
      										</div>
      									</div>
      								</div>
      															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://ipnx.cn/zh/faq/newyorktimesdailybrief" title="NYT連接提示和答案" class="phpgenera_Details_mainR4_bottom_title">NYT連接提示和答案</a>
      									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>130</span>
      										</div>
      										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>836</span>
      										</div>
      									</div>
      								</div>
      														</div>
      							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
      								<a href="http://ipnx.cn/zh/faq/zt">顯示更多</a>
      							</div>
      						</div>
      					</div>
      				</div>
      			</div>
      							<div   id="wjcelcm34c"   class="Article_Details_main2">
      					<div   id="wjcelcm34c"   class="phpgenera_Details_mainL4">
      						<div   id="wjcelcm34c"   class="phpmain1_2_top">
      							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
      									src="/static/imghw/index2_title2.png" alt="" /></a>
      						</div>
      						<div   id="wjcelcm34c"   class="phpgenera_Details_mainL4_info">
      
      													<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828180.html" title="什么是AutoPrefixer,它如何工作?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139012130913.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="什么是AutoPrefixer,它如何工作?" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828180.html" title="什么是AutoPrefixer,它如何工作?" class="phphistorical_Version2_mids_title">什么是AutoPrefixer,它如何工作?</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:15 AM</span>
      								<p class="Articlelist_txts_p">Autoprefixer是一個根據(jù)目標瀏覽器范圍自動為CSS屬性添加廠商前綴的工具。1.它解決了手動維護前綴易出錯的問題;2.通過PostCSS插件形式工作,解析CSS、分析需加前綴的屬性、依配置生成代碼;3.使用步驟包括安裝插件、設置browserslist、在構建流程中啟用;4.注意事項有不手動加前綴、保持配置更新、非所有屬性都加前綴、建議配合預處理器使用。</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828149.html" title="CSS教程,用于創(chuàng)建粘性標頭或頁腳" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/431/639/175138946074845.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS教程,用于創(chuàng)建粘性標頭或頁腳" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828149.html" title="CSS教程,用于創(chuàng)建粘性標頭或頁腳" class="phphistorical_Version2_mids_title">CSS教程,用于創(chuàng)建粘性標頭或頁腳</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:04 AM</span>
      								<p class="Articlelist_txts_p">TocreatestickyheadersandfooterswithCSS,useposition:stickyforheaderswithtopvalueandz-index,ensuringparentcontainersdon’trestrictit.1.Forstickyheaders:setposition:sticky,top:0,z-index,andbackgroundcolor.2.Forstickyfooters,betteruseposition:fixedwithbot</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796831408.html" title="CSS教程,用于創(chuàng)建加載旋轉器和動畫" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/431/639/175181807052041.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS教程,用于創(chuàng)建加載旋轉器和動畫" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796831408.html" title="CSS教程,用于創(chuàng)建加載旋轉器和動畫" class="phphistorical_Version2_mids_title">CSS教程,用于創(chuàng)建加載旋轉器和動畫</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 07, 2025 am	 12:07 AM</span>
      								<p class="Articlelist_txts_p">創(chuàng)建CSS加載旋轉器的方法有三種:1.使用邊框的基本旋轉器,通過HTML和CSS實現(xiàn)簡單動畫;2.使用多個點的自定義旋轉器,通過不同延遲時間實現(xiàn)跳動效果;3.在按鈕中添加旋轉器,通過JavaScript切換類來顯示加載狀態(tài)。每種方法都強調了設計細節(jié)如顏色、大小、可訪問性和性能優(yōu)化的重要性,以提升用戶體驗。</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828118.html" title="CSS教程專注于移動優(yōu)先設計" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/431/639/175138874138984.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS教程專注于移動優(yōu)先設計" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828118.html" title="CSS教程專注于移動優(yōu)先設計" class="phphistorical_Version2_mids_title">CSS教程專注于移動優(yōu)先設計</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 12:52 AM</span>
      								<p class="Articlelist_txts_p">Mobile-firstCSSdesignrequiressettingtheviewportmetatag,usingrelativeunits,stylingfromsmallscreensup,optimizingtypographyandtouchtargets.First,addtocontrolscaling.Second,use%,em,orreminsteadofpixelsforflexiblelayouts.Third,writebasestylesformobile,the</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828192.html" title="如何創(chuàng)建本質上響應的網(wǎng)格布局?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139036062064.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何創(chuàng)建本質上響應的網(wǎng)格布局?" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828192.html" title="如何創(chuàng)建本質上響應的網(wǎng)格布局?" class="phphistorical_Version2_mids_title">如何創(chuàng)建本質上響應的網(wǎng)格布局?</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:19 AM</span>
      								<p class="Articlelist_txts_p">要創(chuàng)建內在響應式網(wǎng)格布局,核心方法是使用CSSGrid的repeat(auto-fit,minmax())模式;1.設置grid-template-columns:repeat(auto-fit,minmax(200px,1fr))讓瀏覽器自動調整列數(shù)并限制每列最小和最大寬度;2.使用gap控制格子間距;3.容器應設為相對單位如width:100%、配合box-sizing:border-box避免寬度計算錯誤并用margin:auto居中;4.可選設置行高與內容對齊方式提升視覺一致性,如row</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828119.html" title="如何將整個網(wǎng)格集中在視口中?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175138878123538.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何將整個網(wǎng)格集中在視口中?" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828119.html" title="如何將整個網(wǎng)格集中在視口中?" class="phphistorical_Version2_mids_title">如何將整個網(wǎng)格集中在視口中?</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 12:53 AM</span>
      								<p class="Articlelist_txts_p">要讓整個網(wǎng)格布局在視口中居中顯示,可通過以下方法實現(xiàn):1.使用margin:0auto實現(xiàn)水平居中,需設定容器固定寬度,適用于固定布局;2.利用Flexbox在外層容器設置justify-content和align-items屬性,結合min-height:100vh可實現(xiàn)垂直和水平居中,適合全屏展示場景;3.直接使用CSSGrid的place-items屬性在父容器上快速居中,簡潔且現(xiàn)代瀏覽器支持良好,同時需確保父容器有足夠高度。每種方式均有適用場景和限制,根據(jù)實際需求選擇合適的方案即可。</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796828177.html" title="CSS中使用@supports的功能檢測是什么?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139007073539.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS中使用@supports的功能檢測是什么?" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796828177.html" title="CSS中使用@supports的功能檢測是什么?" class="phphistorical_Version2_mids_title">CSS中使用@supports的功能檢測是什么?</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:14 AM</span>
      								<p class="Articlelist_txts_p">prainuredetectionIncsssusissuse@supportScheckSifabRowsEsuppecifortSupecifortEfeatureBeforeApplyingReplyingStyles.1.itusesconditionalcsssssbasssbasedonproperty-valueperty-valuepairs,suessas@supports@supports@supports@supports(display:grid)</p>
      							</div>
      														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
      								<a href="http://ipnx.cn/zh/faq/1796831743.html" title="解決CSS瀏覽器兼容性問題和前綴" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175182386183257.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="解決CSS瀏覽器兼容性問題和前綴" />
      								</a>
      								<a href="http://ipnx.cn/zh/faq/1796831743.html" title="解決CSS瀏覽器兼容性問題和前綴" class="phphistorical_Version2_mids_title">解決CSS瀏覽器兼容性問題和前綴</a>
      								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jul 07, 2025 am	 01:44 AM</span>
      								<p class="Articlelist_txts_p">處理CSS瀏覽器兼容性和前綴問題需理解瀏覽器支持差異并合理使用廠商前綴。1.了解常見問題如Flexbox、Grid支持不一,position:sticky失效,動畫表現(xiàn)不同;2.查閱CanIuse確認特性支持情況;3.正確使用-webkit-、-moz-、-ms-、-o-等廠商前綴;4.推薦使用Autoprefixer自動添加前綴;5.安裝PostCSS并配置browserslist指定目標瀏覽器;6.構建時自動處理兼容性;7.老項目可用Modernizr檢測特性;8.不必追求所有瀏覽器一致,確</p>
      							</div>
      													</div>
      
      													<a href="http://ipnx.cn/zh/web-designer.html" class="phpgenera_Details_mainL4_botton">
      								<span>See all articles</span>
      								<img src="/static/imghw/down_right.png" alt="" />
      							</a>
      											</div>
      				</div>
      					</div>
      	</main>
      	<footer>
          <div   id="wjcelcm34c"   class="footer">
              <div   id="wjcelcm34c"   class="footertop">
                  <img src="/static/imghw/logo.png" alt="">
                  <p>公益在線PHP培訓,幫助PHP學習者快速成長!</p>
              </div>
              <div   id="wjcelcm34c"   class="footermid">
                  <a href="http://ipnx.cn/zh/about/us.html">關于我們</a>
                  <a href="http://ipnx.cn/zh/about/disclaimer.html">免責聲明</a>
                  <a href="http://ipnx.cn/zh/update/article_0_1.html">Sitemap</a>
              </div>
              <div   id="wjcelcm34c"   class="footerbottom">
                  <p>
                      ? php.cn All rights reserved
                  </p>
              </div>
          </div>
      </footer>
      
      <input type="hidden" id="verifycode" value="/captcha.html">
      
      
      
      
      		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
      	
      	
      	
      	
      	
      
      	
      	
      
      
      
      
      
      
      <footer>
      <div class="friendship-link">
      <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
      <a href="http://ipnx.cn/" title="亚洲国产日韩欧美一区二区三区">亚洲国产日韩欧美一区二区三区</a>
      
      <div class="friend-links">
      
      
      </div>
      </div>
      
      </footer>
      
      
      <script>
      (function(){
          var bp = document.createElement('script');
          var curProtocol = window.location.protocol.split(':')[0];
          if (curProtocol === 'https') {
              bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
          }
          else {
              bp.src = 'http://push.zhanzhang.baidu.com/push.js';
          }
          var s = document.getElementsByTagName("script")[0];
          s.parentNode.insertBefore(bp, s);
      })();
      </script>
      </body><div id="b6m8m" class="pl_css_ganrao" style="display: none;"><wbr id="b6m8m"></wbr><dfn id="b6m8m"><dfn id="b6m8m"></dfn></dfn><tr id="b6m8m"></tr><blockquote id="b6m8m"></blockquote><wbr id="b6m8m"><xmp id="b6m8m"></xmp></wbr><sub id="b6m8m"><dl id="b6m8m"><code id="b6m8m"><abbr id="b6m8m"></abbr></code></dl></sub><del id="b6m8m"><div id="b6m8m"></div></del><em id="b6m8m"></em><td id="b6m8m"></td><tr id="b6m8m"><optgroup id="b6m8m"><label id="b6m8m"><input id="b6m8m"></input></label></optgroup></tr><track id="b6m8m"></track><delect id="b6m8m"></delect><sup id="b6m8m"></sup><cite id="b6m8m"><center id="b6m8m"><center id="b6m8m"></center></center></cite><tbody id="b6m8m"><sup id="b6m8m"></sup></tbody><rp id="b6m8m"></rp><pre id="b6m8m"><em id="b6m8m"><rp id="b6m8m"><nobr id="b6m8m"></nobr></rp></em></pre><strong id="b6m8m"></strong><sup id="b6m8m"></sup><listing id="b6m8m"></listing><nav id="b6m8m"><input id="b6m8m"><th id="b6m8m"></th></input></nav><u id="b6m8m"></u><i id="b6m8m"><acronym id="b6m8m"><dfn id="b6m8m"></dfn></acronym></i><ruby id="b6m8m"><label id="b6m8m"><object id="b6m8m"><div id="b6m8m"></div></object></label></ruby><option id="b6m8m"></option><label id="b6m8m"><strike id="b6m8m"><thead id="b6m8m"><abbr id="b6m8m"></abbr></thead></strike></label><style id="b6m8m"><acronym id="b6m8m"><dfn id="b6m8m"></dfn></acronym></style><code id="b6m8m"><wbr id="b6m8m"></wbr></code><i id="b6m8m"></i><thead id="b6m8m"></thead><strong id="b6m8m"><legend id="b6m8m"><blockquote id="b6m8m"></blockquote></legend></strong><tfoot id="b6m8m"><delect id="b6m8m"><em id="b6m8m"></em></delect></tfoot><form id="b6m8m"></form><blockquote id="b6m8m"></blockquote><output id="b6m8m"><li id="b6m8m"></li></output><label id="b6m8m"></label><bdo id="b6m8m"><rp id="b6m8m"><delect id="b6m8m"><pre id="b6m8m"></pre></delect></rp></bdo><thead id="b6m8m"></thead><pre id="b6m8m"><option id="b6m8m"><em id="b6m8m"><listing id="b6m8m"></listing></em></option></pre><th id="b6m8m"><ol id="b6m8m"><abbr id="b6m8m"><acronym id="b6m8m"></acronym></abbr></ol></th><dd id="b6m8m"></dd><wbr id="b6m8m"><div id="b6m8m"></div></wbr><strong id="b6m8m"><th id="b6m8m"><blockquote id="b6m8m"><acronym id="b6m8m"></acronym></blockquote></th></strong><label id="b6m8m"></label><rp id="b6m8m"></rp><source id="b6m8m"><pre id="b6m8m"><sub id="b6m8m"></sub></pre></source><legend id="b6m8m"><strike id="b6m8m"><dfn id="b6m8m"><delect id="b6m8m"></delect></dfn></strike></legend><ins id="b6m8m"><sup id="b6m8m"><big id="b6m8m"><pre id="b6m8m"></pre></big></sup></ins><strike id="b6m8m"></strike></div>
      
      </html>