初心者向けガイド


MIP (Mobile Instant Pages - モバイル Web アクセラレータ) は主にモバイル ページのアクセラレーションに使用されます。
このドキュメントは、MIP ページをすばやく作成するのに役立ちます。

1. HTML ファイルを作成します

まず、標準の HTML ファイルを作成します。

  • <html>标签中增加mipマーク
  • を utf-8 にエンコードします
  • モバイル表示用のメタビューポートを追加します
<
<html mip>
<head>
1,initial-scale=1">

</body> ;
</html>

2. MIP 実行環境を追加します

HTML コードに、MIP が依存する mip.jsmip.css を追加します。 mip.jsmip.css

<!DOCTYPE html>
<html mip>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="https://mipcache.bdstatic.com/static/v1/mip.css">
        <title>Hello World</title>
    </head>
    <body>
        <h1>Hello World!</h1>
        <script src="https://mipcache.bdstatic.com/static/v1/mip.js"></script>  
    </body>
</html>

3. 添加 MIP 关联标签

<link rel="miphtml"><link rel="canonical">主要用于告知搜索引擎页面间的关系。添加关联标签后,MIP页的会继承原页面(移动端)的点击权重,同时MIP页将作为搜索引擎的首选导流页面。
使用规则:

  • <link rel="canonical">MIP 页中使用,<link rel="miphtml">原页面使用。
  • 原页面中已经存在<link rel="canonical">标签指向PC页,则MIP页<link rel="canonical">的 href 也指向PC页。
  • MIP页没有对应的原页面,则指向MIP页本身url。
<!DOCTYPE html>
<html mip>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="https://mipcache.bdstatic.com/static/v1/mip.css">
        <link rel="canonical" href="//www.mipengine.org/">
        <title>Hello World</title>
    </head>
    <body>
        <h1>Hello World!</h1>
        <script src="https://mipcache.bdstatic.com/static/v1/mip.js"></script>   
    </body>
</html>

4. 添加样式

出于速度考虑,建议內联使用 css 样式。所有样式写在<style mip-custom></style>中,注意:style 标签仅允许出现一次。

<!DOCTYPE html>
<html mip>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="https://mipcache.bdstatic.com/static/v1/mip.css">
        <link rel="canonical" href="//www.mipengine.org/">
        <title>Hello World</title>
        <style mip-custom>
            h1 { color: red;}
        </style>
    </head>
    <body>
        <h1>Hello World!</h1>
        <script src="https://mipcache.bdstatic.com/static/v1/mip.js"></script>   
    </body>
</html>

5. 替换禁用 HTML 标签

MIP十分关注页面速度,也因此禁用了一些引起拖慢速度的html标签(禁用列表)。例如,<img>标签会引起浏览器的repaint和reflow,为了避免这些,MIP提供了替代标签<mip-img>。详见<mip-img>使用文档

<!DOCTYPE html>
<html mip>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="https://mipcache.bdstatic.com/static/v1/mip.css">
        <link rel="canonical" href="//www.mipengine.org/">
        <title>Hello World</title>
        <style mip-custom>
            h1 { color: red;}
        </style>
    </head>
    <body>
        <h1>Hello World!</h1>
        <mip-img src="https://www.mipengine.org/static/img/mip_logo_3b722d7.png"></mip-img>
        <script src="https://mipcache.bdstatic.com/static/v1/mip.js"></script>   
    </body>
</html>

6. 使用MIP组件

出于对代码质量和性能的考虑,MIP页中不允许自定义javascript代码,所有的交互通过引入MIP组件实现。MIP组件可以理解为封装了js的自定义html标签。上一步中的<mip-img>

<!DOCTYPE html>
<html mip>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="https://mipcache.bdstatic.com/static/v1/mip.css">
        <link rel="canonical" href="//www.mipengine.org/">
        <title>Hello World</title>
        <style mip-custom>
            h1 { color: red;}
        </style>
    </head>
    <body>
        <h1>Hello World!</h1>
        <mip-img src="https://www.mipengine.org/static/img/mip_logo_3b722d7.png"></mip-img>
        <mip-share title="分享:我的第一个MIP页面"></mip-share>
        <script src="https://mipcache.bdstatic.com/static/v1/mip.js"></script>
        <script src="https://mipcache.bdstatic.com/static/v1/mip-share/mip-share.js"></script> 
    </body>
</html>

3. MIP 関連タグを追加します<link rel="miphtml"> および <link rel="canonical">主に、ページ間の関係について検索エンジンに通知するために使用されます。関連付けられたタグを追加すると、MIP ページは元のページ (モバイル端末) のクリックウェイトを継承し、MIP ページ が検索の優先転送ページとして機能します。エンジン。
使用規則:

  • <link rel="canonical">MIP ページ<link rel で使用されます。 ="miphtml">元のページで使用されます。
  • 元のページに PC ページを指す <link rel="canonical"> タグがすでに存在する場合、< strong>MIP ページ
  • strong><link rel="canonical"> の href も PC ページを指します。
  • MIP ページ に対応する 元のページ がない場合、MIP ページ自体の URL を指します。
rrreee

4.スタイルの追加🎜🎜速度上の理由から、CSS スタイルをインラインで使用することをお勧めします。すべてのスタイルは <style mip-custom></style> で記述されます。 注: style タグは 1 回だけ使用できます。 🎜rrreee

5. 無効な HTML タグを置き換えます 🎜🎜MIP はページの速度に細心の注意を払っているため、速度低下の原因となる一部の HTML タグを無効にしています (無効なリスト🎜)。たとえば、<img> タグを使用すると、ブラウザの再描画とリフローが発生します。これを回避するために、MIP は代替タグ <mip-img> を提供します。詳細については、 を参照してください。 <mip-img>ドキュメントを使用します🎜🎜rrreee

6. MIP コンポーネントを使用します🎜🎜 コードの品質とパフォーマンスを考慮して、カスタム JavaScript コードは MIP ページでは許可されず、すべてのインタラクションは MIP コンポーネントの導入を通じて実現されます。 MIP コンポーネントは、js をカプセル化するカスタム HTML タグとして理解できます。前のステップの <mip-img> も MIP コンポーネントです。他のコンポーネントを表示するには、🎜ここをクリック🎜します。 🎜

共有コンポーネントを例に挙げます共有コンポーネントのドキュメントによると、コンポーネントに対応するHTMLタグは<mip-share>,需要依赖//mipcache.bdstatic.com/static/v1/mip-share/mip-share.jsスクリプトであり、ページ内では次のように使用されています:

rrreee

コンポーネントを使用する場合は、コンポーネントドキュメントを参照して、コンポーネントが追加のスクリプトに依存しているかどうかを確認します。依存している場合はmip.jsの後にスクリプトを導入してください。

7. プレビュー

開発が完了したら、MIP 検証ツール を使用してコード仕様を確認できます。

MIP ページ ファイルは直接実行できます。次の方法を選択して、通常の HTML サイトと同様に MIP HTML ページをプレビューできます:

  • ブラウザで直接開きます (XML HTTP リクエストの失敗により、一部のプレビューが表示されます)。要素は失敗する可能性があります)
  • Apache、nginx などのサービスをローカルにデプロイします。

8. 開始します

ここまでで、MIP ページを作成しました。このページには画像とテキストが含まれており、共有したり、ブラウザで実行したりできます。

高度な内容については、

  • MIP HTML仕様
  • コンポーネントレイアウト
  • MIP高速化原理
  • 拡張コンポーネント開発仕様
を参照してください。