현재 gpt 속도 괜찮으신가요? (유료 사용자)

안녕하세요.^^

혹시,,,

gtp에서 작업하시다가 채팅모드중 "Thinking(gpt 5.2)" 모드에서만
질문하면 gpt답변이 너무 느리게 글자가 "한 글자씩" 느리게 나오는데 이유가 몰까요?
(오토 & 인스턴트 는 빠름)

 

비슷한 증상 있으신분?

(현재 시간기준 + 플러스 계정 사용자)

|

댓글 4개

1770031951_gzFTeGwgAN.webp
저는 괜찮다고 하네요..
어제는 저도 솔직히 좀 느렸습니다. 난독화 해독작업을 많이해서 ㅎㅎ
작업 할당량에 따라 틀린듯하네요..

지금 오토상태로 질문하신거 같으신데~ 

오토는 정상입니다. 저도

 

혹시 Thinking(gpt 5.2) 로 말걸어 보실래요?

답변 길게 나오는 질문으로~ 테스트 한번 부탁드려요 ㅎ

복잡하 작업을 많이 하는편이라 Thinking(gpt 5.2) 만 사용하는데~

2틀전부터 애가 이상하네요 ㅎㅎ

1770033948_JFBp9uQyNm.webp

2만2천자 HTML 1분 30초 정도 소요되었네요.
크게 느리거나 하진 않았어요.

[code]
<!doctype html>
<html lang="ko">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width,initial-scale=1" />
  <title>Sir 스타일 대시보드</title>
  <style>
    :root{
      --bg0:#07162b;
      --bg1:#061225;
      --panel:rgba(255,255,255,.06);
      --panel2:rgba(255,255,255,.04);
      --border:rgba(255,255,255,.10);
      --muted:rgba(255,255,255,.72);
      --muted2:rgba(255,255,255,.56);
      --text:#eaf3ff;
      --accent:#59a7ff;
      --accent2:#22c3ff;
      --chip:rgba(255,255,255,.08);

      --r1:18px;
      --r2:22px;

      --shadow: 0 18px 40px rgba(0,0,0,.35);
      --shadow2: 0 10px 25px rgba(0,0,0,.25);
      --max: 1180px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 60% -10%, rgba(89,167,255,.18), transparent 60%),
        radial-gradient(800px 500px at 18% 10%, rgba(34,195,255,.10), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      overflow-x:hidden;
    }

    /* ===== Top Nav ===== */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(7,22,43,.72);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .topbar-inner{
      max-width:var(--max);
      margin:0 auto;
      padding:14px 18px;
      display:flex;
      align-items:center;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.2px;
      font-size:22px;
    }
    .brand .dot{
      width:10px;height:10px;border-radius:50%;
      background:linear-gradient(135deg,var(--accent),var(--accent2));
      box-shadow:0 0 0 3px rgba(89,167,255,.14);
    }
    .nav{
      display:flex;
      align-items:center;
      gap:16px;
      flex:1;
      min-width:0;
    }
    .nav a{
      color:rgba(234,243,255,.80);
      text-decoration:none;
      font-weight:650;
      font-size:14px;
      padding:8px 10px;
      border-radius:12px;
    }
    .nav a:hover{ background: rgba(255,255,255,.06); }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.08);
      min-width: 280px;
    }
    .search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:14px;
    }
    .icon-btn{
      width:38px;height:38px;
      display:grid;place-items:center;
      border-radius:14px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.08);
      cursor:pointer;
    }
    .icon{
      width:18px;height:18px; fill: rgba(234,243,255,.78);
    }
    .avatar{
      display:flex;align-items:center;gap:10px;
      padding:8px 10px;
      border-radius:14px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.08);
    }
    .avatar .badge{
      width:28px;height:28px;border-radius:50%;
      background:linear-gradient(135deg,#a855f7,#22c3ff);
      display:grid;place-items:center;
      font-weight:800;
      font-size:12px;
    }
    .avatar .caret{
      width:10px;height:10px;border-right:2px solid rgba(255,255,255,.7);border-bottom:2px solid rgba(255,255,255,.7);
      transform:rotate(45deg);
      margin-left:2px;
    }

    /* ===== Layout ===== */
    .wrap{
      max-width:var(--max);
      margin: 18px auto 60px;
      padding: 0 18px;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
      margin-top: 10px;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:16px;
      margin: 18px 0;
    }

    .card{
      background: var(--panel);
      border:1px solid var(--border);
      border-radius: var(--r2);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .card-header{
      padding:16px 16px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .card-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.1px;
    }
    .card-title .mini-ico{
      width:22px;height:22px;
      display:grid;place-items:center;
      border-radius:10px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .card-title span{
      font-size:16px;
    }
    .more{
      font-size:12px;
      font-weight:750;
      color: rgba(89,167,255,.92);
      text-decoration:none;
      padding:8px 10px;
      border-radius:12px;
      background: rgba(89,167,255,.10);
      border:1px solid rgba(89,167,255,.18);
    }
    .more:hover{ background: rgba(89,167,255,.14); }

    .list{
      padding: 0 10px 12px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .item{
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.07);
      border-radius: 16px;
      padding: 12px 12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .item .txt{
      min-width:0;
    }
    .item .title{
      font-weight:800;
      font-size:14px;
      line-height:1.2;
      margin-bottom: 6px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .item .meta{
      font-size:12px;
      color: var(--muted2);
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .tag{
      font-weight:750;
      color: rgba(234,243,255,.75);
    }
    .count{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:6px;
      color: rgba(234,243,255,.70);
      font-size:12px;
      padding-top: 2px;
    }
    .bubble{
      width:18px;height:18px;
      fill: rgba(234,243,255,.55);
    }

    /* ===== Content Mall block ===== */
    .mall{
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .mall-left{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .mall-ico{
      width:56px;height:56px;border-radius:18px;
      background: linear-gradient(135deg, rgba(168,85,247,.9), rgba(34,195,255,.9));
      box-shadow: 0 18px 40px rgba(0,0,0,.30);
      display:grid;place-items:center;
    }
    .mall-ico svg{ width:26px;height:26px; fill:white; }
    .mall-title{
      font-weight:900;
      font-size:18px;
      margin:0 0 4px;
    }
    .mall-sub{
      margin:0;
      font-size:12px;
      color: var(--muted2);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 520px;
    }
    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .chip{
      font-size:12px;
      font-weight:750;
      padding:8px 10px;
      border-radius: 999px;
      background: var(--chip);
      border:1px solid rgba(255,255,255,.08);
      color: rgba(234,243,255,.85);
    }
    .mall-right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .pill{
      display:flex;
      align-items:baseline;
      gap:8px;
      padding:10px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      min-width: 120px;
      justify-content:center;
      text-align:center;
    }
    .pill b{ font-size:14px; }
    .pill span{
      font-size:12px;
      color: var(--muted2);
      font-weight:700;
    }

    /* ===== Hero ===== */
    .hero{
      margin-top: 16px;
      padding: 26px 18px 20px;
      border-radius: 26px;
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(900px 420px at 55% 30%, rgba(89,167,255,.20), transparent 60%),
        radial-gradient(700px 420px at 38% 0%, rgba(34,195,255,.12), transparent 55%),
        linear-gradient(180deg, rgba(9,33,63,.72), rgba(6,18,37,.82));
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity:.25;
      pointer-events:none;
      mask-image: radial-gradient(60% 55% at 50% 35%, #000 40%, transparent 70%);
    }
    .hero-top{
      position:relative;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:14px;
      padding: 10px 0 18px;
      text-align:center;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      font-weight:800;
      color: rgba(234,243,255,.85);
      padding:8px 12px;
      border-radius:999px;
      background: rgba(89,167,255,.12);
      border: 1px solid rgba(89,167,255,.22);
    }
    .hero-badge svg{ width:14px;height:14px; fill: rgba(234,243,255,.85); }
    .hero h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.4px;
      line-height:1.15;
    }
    .hero p{
      margin:0;
      color: var(--muted);
      font-size:14px;
      font-weight:650;
    }
    .hero-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
      margin-top: 6px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      color: rgba(234,243,255,.92);
      font-weight:800;
      font-size:14px;
      cursor:pointer;
      text-decoration:none;
    }
    .btn svg{ width:16px;height:16px; fill: rgba(234,243,255,.85); }
    .btn.primary{
      background: linear-gradient(135deg, rgba(89,167,255,.92), rgba(34,195,255,.88));
      border:1px solid rgba(255,255,255,.18);
      color: #06203d;
    }
    .btn.primary svg{ fill:#06203d; }

    .stats{
      position:relative;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      margin-top: 14px;
      padding: 0 6px 6px;
    }
    .stat{
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 16px 14px;
      text-align:center;
    }
    .stat b{
      display:block;
      font-size:22px;
      letter-spacing:-.2px;
      margin-bottom:6px;
    }
    .stat span{
      color: var(--muted2);
      font-weight:750;
      font-size:12px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1040px){
      .search{ min-width: 220px; }
      .grid-2{ grid-template-columns: 1fr; }
      .mall-sub{ max-width: 420px; }
      .stats{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 780px){
      .nav{ display:none; }
      .grid-3{ grid-template-columns: 1fr; }
      .search{ min-width: 0; width: 180px; }
      .mall{ flex-direction:column; align-items:flex-start; }
      .mall-right{ justify-content:flex-start; }
      .hero h1{ font-size:28px; }
    }
  </style>
</head>

<body>
  <!-- ===== Top Navigation ===== -->
  <header class="topbar">
    <div class="topbar-inner">
      <div class="brand">
        <div class="dot"></div>
        <div>Sir</div>
      </div>

      <nav class="nav" aria-label="primary">
        <a href="#">그누보드5</a>
        <a href="#">영카트5</a>
        <a href="#">Q & A</a>
        <a href="#">컨텐츠몰</a>
        <a href="#">부가서비스</a>
        <a href="#">의뢰/채용</a>
        <a href="#">커뮤니티</a>
      </nav>

      <div class="actions">
        <div class="search" role="search">
          <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
            <path d="M10 4a6 6 0 1 1 0 12A6 6 0 0 1 10 4m0-2a8 8 0 1 0 4.9 14.3l4.4 4.4 1.4-1.4-4.4-4.4A8 8 0 0 0 10 2z"/>
          </svg>
          <input placeholder="검색" />
        </div>

        <button class="icon-btn" aria-label="theme">
          <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
            <path d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12m0-16h0v3h0V2zm0 17h0v3h0v-3zM2 12h3v0H2v0zm17 0h3v0h-3v0zM4.2 4.2l2.1 2.1-2.1-2.1zm13.6 13.6 2.1 2.1-2.1-2.1zM19.8 4.2l-2.1 2.1 2.1-2.1zM6.3 17.7l-2.1 2.1 2.1-2.1z"/>
          </svg>
        </button>

        <button class="icon-btn" aria-label="notifications">
          <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
            <path d="M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22zm6-6V11a6 6 0 1 0-12 0v5L4 18v1h16v-1l-2-2z"/>
          </svg>
        </button>

        <div class="avatar" role="button" aria-label="profile">
          <div class="badge">애</div>
          <div class="caret" aria-hidden="true"></div>
        </div>
      </div>
    </div>
  </header>

  <main class="wrap">
    <!-- ===== Top 3 cards ===== -->
    <section class="grid-3">
      <!-- 커뮤니티 -->
      <article class="card">
        <div class="card-header">
          <div class="card-title">
            <div class="mini-ico">💬</div>
            <span>커뮤니티</span>
          </div>
          <a class="more" href="#">전체보기</a>
        </div>
        <div class="list">
          <div class="item">
            <div class="txt">
              <div class="title">파비콘 모습이 달라짐</div>
              <div class="meta">
                <span>해피짱 ·</span>
                <span class="tag">자유게시판</span>
                <span>· 29분 전</span>
                <span style="color:rgba(89,167,255,.9);font-weight:900;">[1]</span>
              </div>
            </div>
          </div>
          <div class="item">
            <div class="txt">
              <div class="title">현재 gpt 속도 괜찮으신가요? (유료 사용자)</div>
              <div class="meta">
                <span>심플스 ·</span>
                <span class="tag">자유게시판</span>
                <span>· 46분 전</span>
                <span style="color:rgba(89,167,255,.9);font-weight:900;">[2]</span>
              </div>
            </div>
          </div>
          <div class="item">
            <div class="txt">
              <div class="title">챗GPT 메모리 초기화 했습니다.</div>
              <div class="meta">
                <span>김남현™ ·</span>
                <span class="tag">자유게시판</span>
                <span>· 2시간 전</span>
                <span style="color:rgba(89,167,255,.9);font-weight:900;">[2]</span>
              </div>
            </div>
          </div>
        </div>
      </article>

      <!-- 인기글 -->
      <article class="card">
        <div class="card-header">
          <div class="card-title">
            <div class="mini-ico">⭐</div>
            <span>인기글</span>
          </div>
          <a class="more" href="#" style="color:rgba(255,200,87,.95); background:rgba(255,200,87,.10); border-color:rgba(255,200,87,.18);">전체보기</a>
        </div>
        <div class="list">
          <div class="item">
            <div class="txt">
              <div class="title">무설치 동영상 편집기를 만들었습니다.</div>
              <div class="meta">
                <span>라엘 ·</span>
                <span class="tag">자유게시판</span>
                <span>· 19시간 전</span>
                <span style="color:rgba(255,200,87,.95);font-weight:900;">[17]</span>
              </div>
            </div>
          </div>
          <div class="item">
            <div class="txt">
              <div class="title">사이트 개편후 한달이 돼 갑니다</div>
              <div class="meta">
                <span>리자 ·</span>
                <span class="tag">자유게시판</span>
                <span>· 8시간 전</span>
                <span style="color:rgba(255,200,87,.95);font-weight:900;">[14]</span>
              </div>
            </div>
          </div>
          <div class="item">
            <div class="txt">
              <div class="title">맥미니 도착했네요.</div>
              <div class="meta">
                <span>슬그루 ·</span>
                <span class="tag">자유게시판</span>
                <span>· 8시간 전</span>
                <span style="color:rgba(255,200,87,.95);font-weight:900;">[16]</span>
              </div>
            </div>
          </div>
        </div>
      </article>

      <!-- 제작의뢰 -->
      <article class="card">
        <div class="card-header">
          <div class="card-title">
            <div class="mini-ico">🧾</div>
            <span>제작의뢰</span>
          </div>
          <a class="more" href="#">전체보기</a>
        </div>
        <div class="list">
          <div class="item">
            <div class="txt">
              <div class="title">영카트를 대단한폼으로 커스터마이징+그누보드 커뮤니티</div>
              <div class="meta">
                <span>고급 ·</span>
                <span>90일 · 어제</span>
              </div>
            </div>
            <div class="count" title="댓글">
              <svg class="bubble" viewBox="0 0 24 24" aria-hidden="true">
                <path d="M4 4h16v12H7l-3 3V4z"/>
              </svg>
              4
            </div>
          </div>

          <div class="item">
            <div class="txt">
              <div class="title">그누보드 설치후 사이트 제작</div>
              <div class="meta">
                <span>초급 ·</span>
                <span>2일 · 2일 전</span>
              </div>
            </div>
            <div class="count">
              <svg class="bubble" viewBox="0 0 24 24" aria-hidden="true">
                <path d="M4 4h16v12H7l-3 3V4z"/>
              </svg>
              17
            </div>
          </div>

          <div class="item">
            <div class="txt">
              <div class="title">홈페이지에 기능추가 문의드립니다!</div>
              <div class="meta">
                <span>초급 ·</span>
                <span>1일 · 3일 전</span>
              </div>
            </div>
            <div class="count">
              <svg class="bubble" viewBox="0 0 24 24" aria-hidden="true">
                <path d="M4 4h16v12H7l-3 3V4z"/>
              </svg>
              14
            </div>
          </div>
        </div>
      </article>
    </section>

    <!-- ===== Mid 2 cards ===== -->
    <section class="grid-2">
      <!-- 컨텐츠몰 -->
      <article class="card">
        <div class="mall">
          <div class="mall-left">
            <div class="mall-ico" aria-hidden="true">
              <svg viewBox="0 0 24 24"><path d="M7 2h10v2H7V2zm-2 5h14l-1 15H6L5 7zm3 3v9h2v-9H8zm6 0v9h2v-9h-2z"/></svg>
            </div>
            <div style="min-width:0">
              <p class="mall-title">컨텐츠몰</p>
              <p class="mall-sub">스킨, 테마, 플러그인 마켓</p>
              <div class="chips">
                <span class="chip">그누보드 스킨</span>
                <span class="chip">영카트 테마</span>
                <span class="chip">플러그인</span>
                <span class="chip">위젯</span>
              </div>
            </div>
          </div>

          <div class="mall-right">
            <div class="pill"><b>900</b><span>상품</span></div>
            <div class="pill"><b>18.3억</b><span>누적판매</span></div>
          </div>
        </div>
      </article>

      <!-- 의뢰 & 채용 -->
      <article class="card">
        <div class="mall">
          <div class="mall-left">
            <div class="mall-ico" style="background:linear-gradient(135deg,#22c55e,#22c3ff);" aria-hidden="true">
              <svg viewBox="0 0 24 24"><path d="M9 7h6V5H9v2zm-2 0V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2h3v14H4V7h3zm1 4h8v2H8v-2zm0 4h6v2H8v-2z"/></svg>
            </div>
            <div style="min-width:0">
              <p class="mall-title">의뢰 & 채용</p>
              <p class="mall-sub">AI 시대, AI가 원하는 회사/개발자를 찾아보세요</p>
              <div class="chips">
                <span class="chip">프로젝트 의뢰</span>
                <span class="chip">개발자 구인</span>
                <span class="chip">AI 견적</span>
              </div>
            </div>
          </div>

          <div class="mall-right">
            <div class="pill" style="background:rgba(34,197,94,.10); border-color:rgba(34,197,94,.18);">
              <b style="color:#67f0a3">5</b><span>진행중</span>
            </div>
            <div class="pill" style="background:rgba(34,195,255,.10); border-color:rgba(34,195,255,.18);">
              <b style="color:#7bdcff">20,573</b><span>누적 의뢰</span>
            </div>
          </div>
        </div>
      </article>
    </section>

    <!-- ===== Hero ===== -->
    <section class="hero">
      <div class="hero-top">
        <div class="hero-badge">
          <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M13 2 3 14h7l-1 8 12-14h-7l-1-6z"/></svg>
          그누보드 & 영카트
        </div>
        <h1>홈페이지 설치? 10분이면 충분합니다~</h1>
        <p>커뮤니티와 쇼핑몰을 빨리 만들 수 있습니다</p>

        <div class="hero-actions">
          <a class="btn primary" href="#">
            <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.4 0-8 2-8 4.5V21h16v-2.5C20 16 16.4 14 12 14z"/></svg>
            사용자 데모
          </a>
          <a class="btn" href="#">
            <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 1a3 3 0 0 0-3 3v2H7v6h2v8h6v-8h2V6h-2V4a3 3 0 0 0-3-3zm1 5h-2V4a1 1 0 0 1 2 0v2z"/></svg>
            관리자 데모
          </a>
          <a class="btn" href="#">
            <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 16 7 11h3V4h4v7h3l-5 5zm-8 4h16v2H4v-2z"/></svg>
            다운로드
          </a>
          <a class="btn" href="#">
            <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 .5a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2.2c-3.3.7-4-1.4-4-1.4-.6-1.4-1.4-1.8-1.4-1.8-1.1-.8.1-.8.1-.8 1.2.1 1.8 1.2 1.8 1.2 1.1 1.8 2.9 1.3 3.6 1 .1-.8.4-1.3.7-1.6-2.7-.3-5.5-1.4-5.5-6.2 0-1.4.5-2.5 1.2-3.4-.1-.3-.5-1.6.1-3.3 0 0 1-.3 3.4 1.3a11.7 11.7 0 0 1 6.2 0C17.9 3 19 3.3 19 3.3c.6 1.7.2 3 .1 3.3.8.9 1.2 2 1.2 3.4 0 4.8-2.8 5.9-5.5 6.2.4.3.8 1 .8 2.1v3.1c0 .3.2.7.8.6A12 12 0 0 0 12 .5z"/></svg>
            GitHub
          </a>
        </div>
      </div>

      <div class="stats">
        <div class="stat">
          <b>107.3만</b>
          <span>다운로드</span>
        </div>
        <div class="stat">
          <b>80,003</b>
          <span>Q&A 질문</span>
        </div>
        <div class="stat">
          <b>2,202</b>
          <span>스킨/플러그인</span>
        </div>
        <div class="stat">
          <b>8,659</b>
          <span>강좌</span>
        </div>
      </div>
    </section>
  </main>
</body>
</html>
[/code]
1분 30초면 크게 나뿌진 않는데..
사실 지금 퍼블리싱 코드 분량은 더 빨라야 되긴 하는데
... 저보다는 너무 빠르시네요 ㅎㅎㅎ 전 완전 느림보..

결론은..
글자가 한 글자씩 안나오고 그룹으로 쭉쭉 나오시는거죠?

제쪽 문제인거 같기도 하고 애매하네요;;
테스트 해주셔서 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

자유게시판

+
제목 글쓴이 날짜 조회
3일 전 조회 138
3일 전 조회 111
3일 전 조회 147
3일 전 조회 302
3일 전 조회 110
3일 전 조회 136
3일 전 조회 136
3일 전 조회 112
3일 전 조회 117
3일 전 조회 92
3일 전 조회 143
3일 전 조회 111
3일 전 조회 130
4일 전 조회 189
4일 전 조회 114
4일 전 조회 142
4일 전 조회 112
4일 전 조회 186
4일 전 조회 350
4일 전 조회 285
4일 전 조회 74
4일 전 조회 119
4일 전 조회 164
4일 전 조회 198
4일 전 조회 91
4일 전 조회 94
4일 전 조회 254
4일 전 조회 157
5일 전 조회 227
5일 전 조회 139