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

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

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

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

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

      \n
    • \"overflow: hidden;\"<\/code> 和 \"width: 0;\"<\/code>,確保在打字效果開始之前不會顯示文本內(nèi)容。 <\/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>元素內(nèi)的文本逐字顯示的效果。我們將使用@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://www.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1>\n    <div   id="377j5v51b"   class=\"container\">\n      <div   id="377j5v51b"   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>類中,並將它的動畫方向設(shè)置為<code>forwards<\/code>,以確保動畫結(jié)束後文本元素不會返回到<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>調(diào)整步驟以獲得更長的打字效果<\/p>\n<p>要調(diào)整較長的文本,您需要增加打字動畫的步驟和持續(xù)時間。 <\/p>\n<p>調(diào)整步驟以獲得更短的打字效果<\/p>\n<p>要調(diào)整較短的文本,您需要減少打字動畫的步驟和持續(xù)時間。 <\/p>\n<p>製作和設(shè)置閃爍光標動畫<\/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ī)則中,並將它的動畫方向?qū)傩栽O(shè)置為<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>調(diào)整閃爍打字效果的代碼<\/p>\n<p>我們可以通過調(diào)整其<code>border-right: .15em solid orange;<\/code>屬性來使光標更細或更粗,或者您可以使光標顏色不同,賦予它<code>border-radius<\/code>,調(diào)整其閃爍頻率等等。 <\/p>\n<p>組合打字機文本動畫的元素<\/p>\n<p>現(xiàn)在您已經(jīng)知道如何在CSS中製作打字機效果,是時候演示此打字效果的一些實用且相關(guān)的用例了。 <\/p>\n<p>結(jié)論<\/p>\n<p>在本文中,我們了解了使用CSS創(chuàng)建動畫“打字機”文本是多麼容易。這種打字效果絕對可以為您的網(wǎng)頁增添趣味和樂趣。 <\/p><p>不過,也許值得最後溫和地警告一下。此技術(shù)最好用於少量非關(guān)鍵文本,只是為了增加一點額外的樂趣。但請注意不要過度依賴它,因為像這樣使用CSS動畫有一些局限性。請確保在各種設(shè)備和視口大小上測試您的打字機文本,因為結(jié)果可能因平臺而異。還要考慮一下依賴輔助技術(shù)的最終用戶,理想情況下,可以進行一些可用性測試,以確保您不會給用戶帶來不便。因為您可以使用純CSS來做一些事情並不一定意味著您應(yīng)該這樣做。如果打字機效果對您很重要,並且您想將其用於更關(guān)鍵的內(nèi)容,也許至少也要考慮一下JavaScript解決方案。 <\/p>\n<p>無論如何,我希望您喜歡這篇文章,並且它讓您開始思考您可以使用CSS動畫做些什麼其他很酷的事情,以增加您的網(wǎng)頁的趣味和樂趣。 <\/p>\n<p>關(guān)於創(chuàng)建CSS打字機效果的常見問題<\/p>\n<p>最後,讓我們回答一些關(guān)於如何在CSS中創(chuàng)建打字機效果的最常見問題。 <\/p>\n<ul>\n<li><strong>什麼是打字機效果? <\/strong><\/li>\n<\/ul>\n<p>“打字機效果”是一種動畫技術(shù),它使一串文本逐字出現(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)建可自定義的打字機動畫涉及使用關(guān)鍵幀和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="377j5v51b"   class=\"container\">\n      <div   id="377j5v51b"   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="377j5v51b"   class=\"container\">\n      <div   id="377j5v51b"   class=\"typed-out\">Web Developer<\/div>\n    <\/div>\n  <\/body>\n<\/html><\/pre>\n<p>在上面的CSS中,打字機動畫逐漸增加<code>.typewriter<\/code>容器內(nèi)元素的寬度,有效地打出文本。 <code>animation-fill-mode<\/code>屬性設(shè)置為<code>forwards<\/code>以確保動畫在完成之後保持最終狀態(tài)(完全打出)。通過此設(shè)置,光標將在完全打出<code>typed-out<\/code>元素的最後一個字母后在其處閃爍。 <\/p>\n<ul>\n<li><strong>有哪些有效使用打字機效果的網(wǎng)站示例? <\/strong><\/li>\n<\/ul>\n<p>打字機動畫通常用於諸如投資組合網(wǎng)站之類的網(wǎng)站,尤其是在設(shè)計師和開發(fā)人員的網(wǎng)站上,它們用於突出關(guān)鍵技能並為頁面增添創(chuàng)意感,從而吸引讀者的注意力。打字機效果有時也用於博客網(wǎng)站和登錄頁面以及產(chǎn)品演示中。 <\/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="377j5v51b"   class="head">
              <div   id="377j5v51b"   class="haed_left">
                  <div   id="377j5v51b"   class="haed_logo">
                      <a href="http://www.miracleart.cn/zh-tw/" title="" class="haed_logo_a">
                          <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                      </a>
                  </div>
                  <div   id="377j5v51b"   class="head_nav">
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="社群" class="head_nava head_nava-template1">社群</a>
                          <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/article.html" title="文章" class="languagechoosea on">文章</a>
                                  <a href="http://www.miracleart.cn/zh-tw/faq/zt" title="合集" class="languagechoosea">合集</a>
                                  <a href="http://www.miracleart.cn/zh-tw/wenda.html" title="問答" class="languagechoosea">問答</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="學(xué)習(xí)" class="head_nava head_nava-template1_1">學(xué)習(xí)</a>
                          <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/course.html" title="課程" class="languagechoosea on">課程</a>
                                  <a href="http://www.miracleart.cn/zh-tw/dic/" title="程式設(shè)計字典" class="languagechoosea">程式設(shè)計字典</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="工具庫" class="head_nava head_nava-template1_2">工具庫</a>
                          <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/development-tools" title="開發(fā)工具" class="languagechoosea on">開發(fā)工具</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/website-source-code" title="網(wǎng)站源碼" class="languagechoosea">網(wǎng)站源碼</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/php-libraries" title="PHP 函式庫" class="languagechoosea">PHP 函式庫</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/js-special-effects" title="JS特效" class="languagechoosea on">JS特效</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/website-materials" title="網(wǎng)站素材" class="languagechoosea on">網(wǎng)站素材</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/extension-plug-ins" title="擴充插件" class="languagechoosea on">擴充插件</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="http://www.miracleart.cn/zh-tw/ai" title="AI工具" class="head_nava head_nava-template1_3">AI工具</a>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="休閒" class="head_nava head_nava-template1_3">休閒</a>
                          <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/game" title="遊戲下載" class="languagechoosea on">遊戲下載</a>
                                  <a href="http://www.miracleart.cn/zh-tw/mobile-game-tutorial/" title="遊戲教程" class="languagechoosea">遊戲教程</a>
      
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
                          <div   id="377j5v51b"   class="head_search">
                      <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('zh-tw')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                      <a href="javascript:;" title="搜尋"  onclick="searchs('zh-tw')"><img src="/static/imghw/find.png" alt="搜尋"></a>
                  </div>
                      <div   id="377j5v51b"   class="head_right">
                  <div   id="377j5v51b"   class="haed_language">
                      <a href="javascript:;" class="layui-btn haed_language_btn">繁體中文<i class="layui-icon layui-icon-triangle-d"></i></a>
                      <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                          <div   id="377j5v51b"   class="languagechoose">
                                                      <a href="javascript:setlang('zh-cn');" title="簡體中文" class="languagechoosea">簡體中文</a>
                                                      <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                      <a href="javascript:;" 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="377j5v51b"    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="377j5v51b"   class="Article_Details_main">
      			<div   id="377j5v51b"   class="Article_Details_main1">
      							<div   id="377j5v51b"   class="Article_Details_main1M">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
      						<a href="http://www.miracleart.cn/zh-tw/" title="首頁"
      							class="phpgenera_Details_mainL1a">首頁</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/zh-tw/web-designer.html"
      							class="phpgenera_Details_mainL1a">web前端</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/zh-tw/css-tutorial.html"
      							class="phpgenera_Details_mainL1a">css教學(xué)</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      						<span>如何為您的網(wǎng)站創(chuàng)建CSS打字機效應(yīng)</span>
      					</div>
      					
      					<div   id="377j5v51b"   class="Articlelist_txts">
      						<div   id="377j5v51b"   class="Articlelist_txts_info">
      							<h1 class="Articlelist_txts_title">如何為您的網(wǎng)站創(chuàng)建CSS打字機效應(yīng)</h1>
      							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
      								<div   id="377j5v51b"   class="author_info">
      									<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="author_detail">
      																			<a href="http://www.miracleart.cn/zh-tw/member/1242473.html" class="author_name">Jack chen</a>
                                      										</div>
      								</div>
                      			</div>
      							<span id="377j5v51b"    class="Articlelist_txts_time">Feb 08, 2025 am	 10:20 AM</span>
      														
      						</div>
      					</div>
      					<hr />
      					<div   id="377j5v51b"   class="article_main php-article">
      						<div   id="377j5v51b"   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)站內(nèi)容更具活力和吸引力,可用於登錄頁面、個人網(wǎng)站和代碼演示。 </li>
      <li>打字機效果可通過使用CSS <code>steps()</code>函數(shù)將文本元素的寬度從0%更改為100%,並通過動畫模擬“打出”文本的光標來創(chuàng)建。 </li>
      <li>可以通過增加或減少打字動畫的步數(shù)和持續(xù)時間來調(diào)整打字效果,以適應(yīng)較長或較短的文本。 </li>
      <li>打字機效果可以與閃爍的光標動畫結(jié)合使用以增強效果,並且可以通過調(diào)整其<code>border-right</code>屬性、顏色、閃爍頻率等來自定義光標。 </li>
      </ul>
      <p>本文將指導(dǎo)您如何使用純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動畫的基礎(chǔ)知識即可理解本教程。 </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>為打字機文本容器設(shè)置樣式</p>
      <p>現(xiàn)在我們有了網(wǎng)頁的佈局,讓我們?yōu)榫哂小皌yped-out”類的<code><div></code>設(shè)置樣式:</p>
      <pre class='brush:php;toolbar:false;'>.typed-out {
        overflow: hidden;
        border-right: .15em solid orange;
        font-size: 1.6rem;
        width: 0;
      }</pre>
      <p>請注意,為了使打字機效果生效,我們添加了以下內(nèi)容:</p>
      <ul>
      <li><code>"overflow: hidden;"</code> 和 <code>"width: 0;"</code>,確保在打字效果開始之前不會顯示文本內(nèi)容。 </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>元素內(nèi)的文本逐字顯示的效果。我們將使用<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>類中,並將它的動畫方向設(shè)置為<code>forwards</code>,以確保動畫結(jié)束後文本元素不會返回到<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>調(diào)整步驟以獲得更長的打字效果</p>
      <p>要調(diào)整較長的文本,您需要增加打字動畫的步驟和持續(xù)時間。 </p>
      <p>調(diào)整步驟以獲得更短的打字效果</p>
      <p>要調(diào)整較短的文本,您需要減少打字動畫的步驟和持續(xù)時間。 </p>
      <p>製作和設(shè)置閃爍光標動畫</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ī)則中,並將它的動畫方向?qū)傩栽O(shè)置為<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>調(diào)整閃爍打字效果的代碼</p>
      <p>我們可以通過調(diào)整其<code>border-right: .15em solid orange;</code>屬性來使光標更細或更粗,或者您可以使光標顏色不同,賦予它<code>border-radius</code>,調(diào)整其閃爍頻率等等。 </p>
      <p>組合打字機文本動畫的元素</p>
      <p>現(xiàn)在您已經(jīng)知道如何在CSS中製作打字機效果,是時候演示此打字效果的一些實用且相關(guān)的用例了。 </p>
      <p>結(jié)論</p>
      <p>在本文中,我們了解了使用CSS創(chuàng)建動畫“打字機”文本是多麼容易。這種打字效果絕對可以為您的網(wǎng)頁增添趣味和樂趣。 </p><p>不過,也許值得最後溫和地警告一下。此技術(shù)最好用於少量非關(guān)鍵文本,只是為了增加一點額外的樂趣。但請注意不要過度依賴它,因為像這樣使用CSS動畫有一些局限性。請確保在各種設(shè)備和視口大小上測試您的打字機文本,因為結(jié)果可能因平臺而異。還要考慮一下依賴輔助技術(shù)的最終用戶,理想情況下,可以進行一些可用性測試,以確保您不會給用戶帶來不便。因為您可以使用純CSS來做一些事情並不一定意味著您應(yīng)該這樣做。如果打字機效果對您很重要,並且您想將其用於更關(guān)鍵的內(nèi)容,也許至少也要考慮一下JavaScript解決方案。 </p>
      <p>無論如何,我希望您喜歡這篇文章,並且它讓您開始思考您可以使用CSS動畫做些什麼其他很酷的事情,以增加您的網(wǎng)頁的趣味和樂趣。 </p>
      <p>關(guān)於創(chuàng)建CSS打字機效果的常見問題</p>
      <p>最後,讓我們回答一些關(guān)於如何在CSS中創(chuàng)建打字機效果的最常見問題。 </p>
      <ul>
      <li><strong>什麼是打字機效果? </strong></li>
      </ul>
      <p>“打字機效果”是一種動畫技術(shù),它使一串文本逐字出現(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)建可自定義的打字機動畫涉及使用關(guān)鍵幀和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>容器內(nèi)元素的寬度,有效地打出文本。 <code>animation-fill-mode</code>屬性設(shè)置為<code>forwards</code>以確保動畫在完成之後保持最終狀態(tài)(完全打出)。通過此設(shè)置,光標將在完全打出<code>typed-out</code>元素的最後一個字母后在其處閃爍。 </p>
      <ul>
      <li><strong>有哪些有效使用打字機效果的網(wǎng)站示例? </strong></li>
      </ul>
      <p>打字機動畫通常用於諸如投資組合網(wǎng)站之類的網(wǎng)站,尤其是在設(shè)計師和開發(fā)人員的網(wǎng)站上,它們用於突出關(guān)鍵技能並為頁面增添創(chuàng)意感,從而吸引讀者的注意力。打字機效果有時也用於博客網(wǎng)站和登錄頁面以及產(chǎn)品演示中。 </p>
      </div></code></p><p>以上是如何為您的網(wǎng)站創(chuàng)建CSS打字機效應(yīng)的詳細內(nèi)容。更多資訊請關(guān)注PHP中文網(wǎng)其他相關(guān)文章!</p>
      
      
      						</div>
      					</div>
      					<div   id="377j5v51b"   class="wzconShengming_sp">
      						<div   id="377j5v51b"   class="bzsmdiv_sp">本網(wǎng)站聲明</div>
      						<div>本文內(nèi)容由網(wǎng)友自願投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請聯(lián)絡(luò)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="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821119.html" title="指南:恆星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恆星刀片保存文件位置/保存文件丟失/不保存</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821436.html" title="沙丘:覺醒 - 高級行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺醒 - 高級行星學(xué)家Quest演練</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821278.html" title="約會一切:德克和哈珀關(guān)係指南" class="phpgenera_Details_mainR4_bottom_title">約會一切:德克和哈珀關(guān)係指南</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div> -->
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
      													<h3>Undresser.AI Undress</h3>
      												</a>
      												<p>人工智慧驅(qū)動的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
      													<h3>Clothoff.io</h3>
      												</a>
      												<p>AI脫衣器</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/zh-tw/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      					
      
      
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821119.html" title="指南:恆星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恆星刀片保存文件位置/保存文件丟失/不保存</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821436.html" title="沙丘:覺醒 - 高級行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺醒 - 高級行星學(xué)家Quest演練</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821278.html" title="約會一切:德克和哈珀關(guān)係指南" class="phpgenera_Details_mainR4_bottom_title">約會一切:德克和哈珀關(guān)係指南</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div>
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3漢化版</h3>
      												</a>
      												<p>中文版,非常好用</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/zh-tw/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      										
      
      					
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/gmailyxdlrkzn" title="gmail信箱登陸入口在哪裡" class="phpgenera_Details_mainR4_bottom_title">gmail信箱登陸入口在哪裡</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>8634</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>17</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/java-tutorial" title="Java教學(xué)" class="phpgenera_Details_mainR4_bottom_title">Java教學(xué)</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1783</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>16</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/cakephp-tutor" title="CakePHP 教程" class="phpgenera_Details_mainR4_bottom_title">CakePHP 教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1722</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>56</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/laravel-tutori" title="Laravel 教程" class="phpgenera_Details_mainR4_bottom_title">Laravel 教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1577</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>28</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/php-tutorial" title="PHP教程" class="phpgenera_Details_mainR4_bottom_title">PHP教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1438</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>31</span>
      										</div>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/faq/zt">顯示更多</a>
      							</div>
      						</div>
      					</div>
      				</div>
      			</div>
      							<div   id="377j5v51b"   class="Article_Details_main2">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
      						<div   id="377j5v51b"   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="377j5v51b"   class="phpgenera_Details_mainL4_info">
      
      													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823628.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/175069693197174.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="什麼是'渲染障礙CSS”?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823628.html" title="什麼是'渲染障礙CSS”?" class="phphistorical_Version2_mids_title">什麼是'渲染障礙CSS”?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 24, 2025 am	 12:42 AM</span>
      								<p class="Articlelist_txts_p">CSS會阻塞頁面渲染是因為瀏覽器默認將內(nèi)聯(lián)和外部CSS視為關(guān)鍵資源,尤其是使用引入的樣式表、頭部大量內(nèi)聯(lián)CSS以及未優(yōu)化的媒體查詢樣式。 1.提取關(guān)鍵CSS並內(nèi)嵌至HTML;2.延遲加載非關(guān)鍵CSS通過JavaScript;3.使用media屬性優(yōu)化加載如打印樣式;4.壓縮合併CSS減少請求。建議使用工具提取關(guān)鍵CSS,結(jié)合rel="preload"異步加載,合理使用media延遲加載,避免過度拆分與復(fù)雜腳本控制。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796820543.html" title="如何在無花果中使用Lotties" 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/242/473/174986743677204.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何在無花果中使用Lotties" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796820543.html" title="如何在無花果中使用Lotties" class="phphistorical_Version2_mids_title">如何在無花果中使用Lotties</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 14, 2025 am	 10:17 AM</span>
      								<p class="Articlelist_txts_p">在接下來的教程中,我將向您展示如何在無花果中創(chuàng)建Lottie動畫。我們將使用兩種彩色設(shè)計來超越如何在無花果上進行動畫,然後向您展示如何從Figma到Lottie動畫。您只需要免費無花果</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822133.html" title="外部與內(nèi)部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/175035152168797.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="外部與內(nèi)部CSS:最好的方法是什麼?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822133.html" title="外部與內(nèi)部CSS:最好的方法是什麼?" class="phphistorical_Version2_mids_title">外部與內(nèi)部CSS:最好的方法是什麼?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:45 AM</span>
      								<p class="Articlelist_txts_p">thebestapphachforcssdepprodsontheproject'sspefificneeds.forlargerprojects,externalcsSissBetterDuoSmaintoMaintainability andReusability; forsMallerProjectsorsingle-pageApplications,InternaltCsmightBemoresobleable.InternalCsmightBemorese.it.it'sclucialtobalancepopryseceneceenceprodrenceprodrenceNeed</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821588.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/175026415047262.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="我的CSS必須在較低的情況下嗎?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821588.html" title="我的CSS必須在較低的情況下嗎?" class="phphistorical_Version2_mids_title">我的CSS必須在較低的情況下嗎?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:29 AM</span>
      								<p class="Articlelist_txts_p">否,CSSDOESNOTHAVETOBEINLOWERCASE.CHOMENDENS,使用flowercaseisrecommondendendending:1)一致性和可讀性,2)避免使用促進性技術(shù),3)潛在的Performent FormanceBenefits,以及4)RightCollaboraboraboraboraboraboraboraboraboraboraboraboraboraboraboraboraborationWithInteams。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821998.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/175034936181156.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS案例靈敏度:了解重要的" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821998.html" title="CSS案例靈敏度:了解重要的" class="phphistorical_Version2_mids_title">CSS案例靈敏度:了解重要的</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:09 AM</span>
      								<p class="Articlelist_txts_p">cssismostlycaseminemintiment,buturlsandfontfamilynamesarecase敏感。 1)屬性和valueslikeColor:紅色; prenotcase-sensive.2)urlsmustmustmatchtheserver'server'scase,例如</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/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://www.miracleart.cn/zh-tw/faq/1796828180.html" title="什麼是AutoPrefixer,它如何工作?" class="phphistorical_Version2_mids_title">什麼是AutoPrefixer,它如何工作?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:15 AM</span>
      								<p class="Articlelist_txts_p">Autoprefixer是一個根據(jù)目標瀏覽器範(fàn)圍自動為CSS屬性添加廠商前綴的工具。 1.它解決了手動維護前綴易出錯的問題;2.通過PostCSS插件形式工作,解析CSS、分析需加前綴的屬性、依配置生成代碼;3.使用步驟包括安裝插件、設(shè)置browserslist、在構(gòu)建流程中啟用;4.注意事項有不手動加前綴、保持配置更新、非所有屬性都加前綴、建議配合預(yù)處理器使用。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821606.html" title="什麼是CSS計數(shù)器?" 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/175026444127039.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="什麼是CSS計數(shù)器?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821606.html" title="什麼是CSS計數(shù)器?" class="phphistorical_Version2_mids_title">什麼是CSS計數(shù)器?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:34 AM</span>
      								<p class="Articlelist_txts_p">csscounterscanautomationallymentermentermentections和lists.1)usecounter-ensettoInitializize,反插入式發(fā)芽,andcounter()orcounters()</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821580.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/175026403168895.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS:何時重要(何時不)?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821580.html" title="CSS:何時重要(何時不)?" class="phphistorical_Version2_mids_title">CSS:何時重要(何時不)?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:27 AM</span>
      								<p class="Articlelist_txts_p">在CSS中,選擇器和屬性名不區(qū)分大小寫,而值、命名顏色、URL和自定義屬性則區(qū)分大小寫。 1.選擇器和屬性名不區(qū)分大小寫,例如background-color和Background-Color相同。 2.值中的十六進制顏色不區(qū)分大小寫,但命名顏色區(qū)分大小寫,如red有效而Red無效。 3.URL區(qū)分大小寫,可能導(dǎo)致文件加載問題。 4.自定義屬性(變量)區(qū)分大小寫,使用時需注意大小寫一致。</p>
      							</div>
      													</div>
      
      													<a href="http://www.miracleart.cn/zh-tw/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="377j5v51b"   class="footer">
              <div   id="377j5v51b"   class="footertop">
                  <img src="/static/imghw/logo.png" alt="">
                  <p>公益線上PHP培訓(xùn),幫助PHP學(xué)習(xí)者快速成長!</p>
              </div>
              <div   id="377j5v51b"   class="footermid">
                  <a href="http://www.miracleart.cn/zh-tw/about/us.html">關(guān)於我們</a>
                  <a href="http://www.miracleart.cn/zh-tw/about/disclaimer.html">免責(zé)聲明</a>
                  <a href="http://www.miracleart.cn/zh-tw/update/article_0_1.html">Sitemap</a>
              </div>
              <div   id="377j5v51b"   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://www.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</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="kfscz" class="pl_css_ganrao" style="display: none;"><ol id="kfscz"></ol><td id="kfscz"></td><source id="kfscz"></source><b id="kfscz"><pre id="kfscz"><samp id="kfscz"><strong id="kfscz"></strong></samp></pre></b><thead id="kfscz"></thead><div id="kfscz"></div><xmp id="kfscz"><label id="kfscz"><xmp id="kfscz"></xmp></label></xmp><kbd id="kfscz"></kbd><samp id="kfscz"></samp><strong id="kfscz"><sup id="kfscz"><input id="kfscz"><em id="kfscz"></em></input></sup></strong><noframes id="kfscz"><span id="kfscz"></span></noframes><delect id="kfscz"></delect><ins id="kfscz"></ins><cite id="kfscz"></cite><thead id="kfscz"></thead><legend id="kfscz"></legend><tbody id="kfscz"></tbody><ul id="kfscz"><strike id="kfscz"></strike></ul><rt id="kfscz"><delect id="kfscz"><strike id="kfscz"></strike></delect></rt><u id="kfscz"></u><sup id="kfscz"></sup><track id="kfscz"></track><tr id="kfscz"><noframes id="kfscz"><span id="kfscz"></span></noframes></tr><ins id="kfscz"></ins><th id="kfscz"><dl id="kfscz"><button id="kfscz"></button></dl></th><dfn id="kfscz"><optgroup id="kfscz"><sub id="kfscz"></sub></optgroup></dfn><dd id="kfscz"><strong id="kfscz"></strong></dd><th id="kfscz"></th><tfoot id="kfscz"><pre id="kfscz"><tfoot id="kfscz"></tfoot></pre></tfoot><samp id="kfscz"></samp><small id="kfscz"></small><pre id="kfscz"><ol id="kfscz"></ol></pre><table id="kfscz"><xmp id="kfscz"><label id="kfscz"></label></xmp></table><s id="kfscz"><kbd id="kfscz"><thead id="kfscz"></thead></kbd></s><strong id="kfscz"></strong><small id="kfscz"><pre id="kfscz"><pre id="kfscz"></pre></pre></small><acronym id="kfscz"><tt id="kfscz"></tt></acronym><p id="kfscz"><kbd id="kfscz"><strong id="kfscz"></strong></kbd></p><dd id="kfscz"><abbr id="kfscz"><tfoot id="kfscz"></tfoot></abbr></dd><tr id="kfscz"></tr><listing id="kfscz"><pre id="kfscz"><b id="kfscz"></b></pre></listing><dd id="kfscz"></dd><tt id="kfscz"></tt><legend id="kfscz"><li id="kfscz"><dl id="kfscz"></dl></li></legend><track id="kfscz"></track><dfn id="kfscz"><p id="kfscz"><kbd id="kfscz"></kbd></p></dfn><strong id="kfscz"><blockquote id="kfscz"></blockquote></strong><legend id="kfscz"></legend><ul id="kfscz"></ul><center id="kfscz"></center><wbr id="kfscz"><ul id="kfscz"><center id="kfscz"></center></ul></wbr><tr id="kfscz"><dfn id="kfscz"><span id="kfscz"></span></dfn></tr><sup id="kfscz"><input id="kfscz"><em id="kfscz"><input id="kfscz"></input></em></input></sup><strong id="kfscz"><mark id="kfscz"><listing id="kfscz"><pre id="kfscz"></pre></listing></mark></strong><p id="kfscz"></p><sup id="kfscz"><table id="kfscz"><em id="kfscz"></em></table></sup><track id="kfscz"><ol id="kfscz"><table id="kfscz"></table></ol></track><rt id="kfscz"><small id="kfscz"><style id="kfscz"></style></small></rt><strong id="kfscz"><ul id="kfscz"><code id="kfscz"><ul id="kfscz"></ul></code></ul></strong><tfoot id="kfscz"></tfoot><acronym id="kfscz"></acronym><code id="kfscz"><acronym id="kfscz"><noframes id="kfscz"></noframes></acronym></code><ins id="kfscz"></ins><kbd id="kfscz"><p id="kfscz"><mark id="kfscz"><strong id="kfscz"></strong></mark></p></kbd><i id="kfscz"></i><abbr id="kfscz"></abbr><pre id="kfscz"><ol id="kfscz"><font id="kfscz"></font></ol></pre><tr id="kfscz"></tr><ul id="kfscz"><dl id="kfscz"><ruby id="kfscz"></ruby></dl></ul><var id="kfscz"></var><noframes id="kfscz"><span id="kfscz"></span></noframes><small id="kfscz"><style id="kfscz"><delect id="kfscz"></delect></style></small><acronym id="kfscz"></acronym><strong id="kfscz"><address id="kfscz"><nav id="kfscz"></nav></address></strong><s id="kfscz"><abbr id="kfscz"><dd id="kfscz"></dd></abbr></s><acronym id="kfscz"><sup id="kfscz"><button id="kfscz"></button></sup></acronym><big id="kfscz"></big><optgroup id="kfscz"></optgroup><kbd id="kfscz"></kbd><abbr id="kfscz"></abbr><em id="kfscz"></em><sup id="kfscz"></sup><button id="kfscz"><input id="kfscz"><del id="kfscz"></del></input></button><tbody id="kfscz"><abbr id="kfscz"><form id="kfscz"><optgroup id="kfscz"></optgroup></form></abbr></tbody><center id="kfscz"><optgroup id="kfscz"><blockquote id="kfscz"></blockquote></optgroup></center><font id="kfscz"><strong id="kfscz"><dd id="kfscz"></dd></strong></font><wbr id="kfscz"><li id="kfscz"><big id="kfscz"></big></li></wbr><kbd id="kfscz"></kbd><code id="kfscz"><tr id="kfscz"><cite id="kfscz"><video id="kfscz"></video></cite></tr></code><strike id="kfscz"></strike><li id="kfscz"><dl id="kfscz"><button id="kfscz"></button></dl></li><xmp id="kfscz"><li id="kfscz"><legend id="kfscz"></legend></li></xmp><kbd id="kfscz"><p id="kfscz"><dfn id="kfscz"></dfn></p></kbd><noframes id="kfscz"></noframes><th id="kfscz"></th><pre id="kfscz"></pre><legend id="kfscz"></legend><legend id="kfscz"></legend><s id="kfscz"></s><progress id="kfscz"></progress></div>
      
      </html>