さまざまなビューポート ユニットに postcss-px-to-viewport を設定するには、viewportUnit
オプションを使用できます。このオプションを使用すると、ビューポートベースの計算に使用する単位を指定できます。デフォルトの単位は vw
ですが、vh
、vmin
、または vmax
も使用できます。viewportUnit
option. This option allows you to specify the unit that you want to use for viewport-based calculations. The default unit is vw
, but you can also use vh
, vmin
, or vmax
.
For example, to use vh
as the viewport unit, you would add the following configuration to your postcss config file:
<code>postcss-px-to-viewport: { viewportUnit: 'vh', }</code>
In addition to the viewportUnit
option, postcss-px-to-viewport also provides several other advanced options that you can use to customize its behavior. These options include:
viewportWidth
: This option allows you to specify the viewport width that you want to use for calculations. The default value is 375px.minPixelValue
: This option allows you to specify the minimum pixel value that should be converted to viewport units. The default value is 1px.exclude
: This option allows you to exclude certain CSS files or selectors from being processed by postcss-px-to-viewport. This can be useful if you have styles that should not be scaled based on the viewport size.To exclude certain CSS files or selectors from being processed by postcss-px-to-viewport, you can use the exclude
option. This option allows you to specify a list of file paths or selectors that should be ignored by the plugin.
For example, to exclude all CSS files in the vendor
vh
をビューポート ユニットとして使用するには、次の設定を postcss 設定ファイルに追加します:
<code>postcss-px-to-viewport: { exclude: ['/vendor/*.css'] }</code>
viewportUnit
オプションに加えて、postcss-px-to-viewport には、その動作をカスタマイズするために使用できるその他の高度なオプションもいくつか用意されています。これらのオプションには以下が含まれます: 🎜viewportWidth
: このオプションを使用すると、計算に使用するビューポートの幅を指定できます。デフォルト値は 375px です。minPixelValue
: このオプションを使用すると、ビューポート単位に変換する最小ピクセル値を指定できます。デフォルト値は 1px です。exclude
: このオプションを使用すると、特定の CSS ファイルまたはセレクターを postcss-px-to-viewport による処理から除外できます。これは、ビューポート サイズに基づいて拡大縮小する必要のないスタイルがある場合に役立ちます。exclude
オプションを使用できます。このオプションを使用すると、プラグインによって無視されるファイル パスまたはセレクターのリストを指定できます。たとえば、vendor
ディレクトリ内のすべての CSS ファイルを postcss-px- による処理から除外します。 to-viewport を使用するには、postcss 構成ファイルに次の構成を追加します:🎜<code>postcss-px-to-viewport: { exclude: ['.no-scale'] }</code>
以上がpostcss-px-to-viewport 構成チュートリアルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。