麻豆黑色丝袜jk制服福利网站-麻豆精品传媒视频观看-麻豆精品传媒一二三区在线视频-麻豆精选传媒4区2021-在线视频99-在线视频a

千鋒教育-做有情懷、有良心、有品質的職業教育機構

手機站
千鋒教育

千鋒學習站 | 隨時隨地免費學

千鋒教育

掃一掃進入千鋒手機站

領取全套視頻
千鋒教育

關注千鋒學習站小程序
隨時隨地免費學習課程

當前位置:首頁  >  技術干貨  > kbone高級-使用rem

kbone高級-使用rem

來源:千鋒教育
發布人:qyf
時間: 2022-09-15 15:20:37 1663226437

  kbone 沒有支持 rpx,取而代之的是可以使用更為傳統的 rem 進行開發。使用流程如下:

  1、用法

  1.1 修改 webpack 插件配置

  在 mp-webpack-plugin 這個插件的配置中的 global 字段內補充 rem 配置。

  module.exports = {

  global: {

  rem: true,

  },

  // ... other options

  }

  1.2 在業務代碼里就可以設置 html 的 font-size 樣式了,比如如下方式:

  window.onload = function() {

  if (process.env.isMiniprogram) {

  // 小程序

  document.documentElement.style.fontSize = wx.getSystemInfoSync().screenWidth / 16 + 'px'

  } else {

  // Web 端

  document.documentElement.style.fontSize = document.documentElement.getBoundingClientRect().width / 16 + 'px'

  }

  }

  1.3 在業務代碼的樣式里使用 rem。

  .content {

  width: 10rem;

  }

  PS:這個特性只在基礎庫 2.9.0 及以上版本支持。

  2、案例

  在 kbone-advanced 目錄下創建 05-rem 目錄,本案例在這個目錄下完成。

  2.1 創建 package.json

  cd 05-rem

  npm init -y

  編輯 package.json:

  {

  "name": "01-env",

  "version": "1.0.0",

  "description": "",

  "main": "index.js",

  "scripts": {

  "build": "rimraf dist/web && cross-env NODE_ENV=production webpack --config build/webpack.config.js --progress --hide-modules",

  "mp": "cross-env NODE_ENV=production webpack --config build/webpack.mp.config.js --progress --hide-modules"

  },

  "dependencies": {

  "add": "^2.0.6",

  "vue": "^2.5.11"

  },

  "browserslist": [

  "> 1%",

  "last 2 versions",

  "not ie <= 8"

  ],

  "devDependencies": {

  "babel-core": "^6.26.0",

  "babel-loader": "^7.1.2",

  "babel-preset-env": "^1.6.0",

  "cross-env": "^5.0.5",

  "css-loader": "^0.28.7",

  "file-loader": "^1.1.4",

  "html-webpack-plugin": "^4.0.0-beta.5",

  "mini-css-extract-plugin": "^0.5.0",

  "optimize-css-assets-webpack-plugin": "^5.0.1",

  "stylehacks": "^4.0.3",

  "vue-loader": "^15.7.0",

  "vue-template-compiler": "^2.6.10",

  "webpack": "^4.29.6",

  "webpack-cli": "^3.2.3",

  "mp-webpack-plugin": "latest"

  },

  "keywords": [],

  "author": "",

  "license": "ISC"

  }

  安裝依賴包:

  npm install

  2.2 配置 webpack

  在 05-rem/build 目錄下創建 webpack.config.js,內容如下:

  var path = require('path')

  var MiniCssExtractPlugin = require('mini-css-extract-plugin')

  const webpack = require('webpack')

  const { VueLoaderPlugin } = require('vue-loader')

  const HtmlWebpackPlugin = require('html-webpack-plugin')

  module.exports = {

  mode: 'production',

  entry: {

  index: path.resolve(__dirname, '../src/main.js'),

  },

  output: {

  path: path.resolve(__dirname, '../dist/web/'),

  publicPath: './',

  filename: '[name].js'

  },

  target: 'web',

  module: {

  rules: [

  {

  test: /\.css$/,

  use: [

  MiniCssExtractPlugin.loader,

  'css-loader'

  ],

  }, {

  test: /\.vue$/,

  loader: 'vue-loader',

  },

  {

  test: /\.js$/,

  use: {

  loader: 'babel-loader',

  options: {

  presets: ['env']

  }

  },

  exclude: /node_modules/

  },

  {

  test: /\.(png|jpg|gif|svg)$/,

  loader: 'file-loader',

  options: {

  name: '[name].[ext]?[hash]'

  }

  }

  ]

  },

  resolve: {

  extensions: ['*', '.js', '.vue', '.json']

  },

  plugins: [

  new webpack.DefinePlugin({

  'process.env.isMiniprogram': false, // 注入環境變量,用于業務代碼判斷

  }),

  new MiniCssExtractPlugin({

  filename: '[name].css'

  }),

  new VueLoaderPlugin(),

  new HtmlWebpackPlugin({

  filename: 'index.html',

  chunks: ['index'],

  template: path.join(__dirname, '../index.html')

  }),

  ]

  }

  2.3 創建 main.js

  在 01-env/src 目錄下創建 main.js,內容如下:

  import Vue from 'vue'

  import App from './App'

  window.onload = function() {

  if (process.env.isMiniprogram) {

  // 小程序

  document.documentElement.style.fontSize = wx.getSystemInfoSync().screenWidth / 16 + 'px'

  } else {

  // Web 端

  document.documentElement.style.fontSize = document.documentElement.getBoundingClientRect().width / 16 + 'px'

  }

  }

  new Vue({

  el: '#app',

  render: h => h(App)

  })

  2.3 創建 App.vue

  在 05-rem/src 目錄下創建 App.vue,內容如下:

<template>

  <div class="title">

    hello, {{info}}!

  </div>

</template>

 

<script>

export default {

  computed: {

    info() {

      if (process.env.isMiniprogram) {

        return 'miniprogram'

      } else {

        return 'web'

      }

    }

  }

}

</script>

 

<style lang="css">

.title {

  font-size: 1rem;

  color:brown;

}

</style>

  2.4 編寫入口文件 index.html

  在項目根目錄下創建 index.html,內容如下:

<!DOCTYPE html>

<html lang="en">

  <head>

    <meta charset="utf-8">

    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no,minimal-ui, viewport-fit=cover" />

    <meta content="yes"name="apple-mobile-web-app-capable"/>

    <meta content="black"name="apple-mobile-web-app-status-bar-style"/>

    <meta name="format-detection"content="telephone=no, email=no" />

    <title>vue</title>

    <style type="text/css">

      #app {

        font-family: 'Avenir', Helvetica, Arial, sans-serif;

        -webkit-font-smoothing: antialiased;

        -moz-osx-font-smoothing: grayscale;

        text-align: center;

        color: #2c3e50;

        margin-top: 60px;

      }

    </style>

  </head>

  <body>

    <div id="app"></div>

  </body>

</html>

  2.5 Web端效果預覽

  npm run build

圖片3

  2.6 創建 webpack.mp.config.js

  在 05-rem/build 目錄下創建 webpack.mp.config.js,內容如下:

  const path = require('path')

  const webpack = require('webpack')

  const MiniCssExtractPlugin = require('mini-css-extract-plugin')

  const { VueLoaderPlugin } = require('vue-loader')

  const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');

  const TerserPlugin = require('terser-webpack-plugin')

  const MpPlugin = require('mp-webpack-plugin') // 用于構建小程序代碼的 webpack 插件

  const isOptimize = false // 是否壓縮業務代碼,開發者工具可能無法完美支持業務代碼使用到的 es 特性,建議自己做代碼壓縮

  module.exports = {

  mode: 'production',

  entry: {

  'app': path.resolve(__dirname, '../src/main.mp.js')

  },

  output: {

  path: path.resolve(__dirname, '../dist/mp/common'), // 放到小程序代碼目錄中的 common 目錄下

  filename: '[name].js', // 必需字段,不能修改

  library: 'createApp', // 必需字段,不能修改

  libraryExport: 'default', // 必需字段,不能修改

  libraryTarget: 'window', // 必需字段,不能修改

  },

  target: 'web', // 必需字段,不能修改

  optimization: {

  runtimeChunk: false, // 必需字段,不能修改

  splitChunks: { // 代碼分隔配置,不建議修改

  chunks: 'all',

  minSize: 1000,

  maxSize: 0,

  minChunks: 1,

  maxAsyncRequests: 100,

  maxInitialRequests: 100,

  automaticNameDelimiter: '~',

  name: true,

  cacheGroups: {

  vendors: {

  test: /[\\/]node_modules[\\/]/,

  priority: -10

  },

  default: {

  minChunks: 2,

  priority: -20,

  reuseExistingChunk: true

  }

  }

  },

  minimizer: isOptimize ? [

  // 壓縮CSS

  new OptimizeCSSAssetsPlugin({

  assetNameRegExp: /\.(css|wxss)$/g,

  cssProcessor: require('cssnano'),

  cssProcessorPluginOptions: {

  preset: ['default', {

  discardComments: {

  removeAll: true,

  },

  minifySelectors: false, // 因為 wxss 編譯器不支持 .some>:first-child 這樣格式的代碼,所以暫時禁掉這個

  }],

  },

  canPrint: false

  }),

  // 壓縮 js

  new TerserPlugin({

  test: /\.js(\?.*)?$/i,

  parallel: true,

  })

  ] : [],

  },

  module: {

  rules: [

  {

  test: /\.css$/,

  use: [

  MiniCssExtractPlugin.loader,

  'css-loader'

  ],

  },

  {

  test: /\.vue$/,

  loader: [

  'vue-loader',

  ],

  },

  {

  test: /\.js$/,

  use: {

  loader: 'babel-loader',

  options: {

  presets: ['env']

  }

  },

  exclude: /node_modules/

  },

  {

  test: /\.(png|jpg|gif|svg)$/,

  loader: 'file-loader',

  options: {

  name: '[name].[ext]?[hash]'

  }

  }

  ]

  },

  resolve: {

  extensions: ['*', '.js', '.vue', '.json']

  },

  plugins: [

  new webpack.DefinePlugin({

  'process.env.isMiniprogram': true, // 注入環境變量,用于業務代碼判斷

  }),

  new MiniCssExtractPlugin({

  filename: '[name].wxss',

  }),

  new VueLoaderPlugin(),

  new MpPlugin(require('./miniprogram.config.js')),

  ],

  }

  2.7 創建 main.mp.js

  在 05-rem/src 下創建 main.mp.js 文件,內容如下:

  import Vue from 'vue'

  import App from './App'

  export default function createApp() {

  const container = document.createElement('div')

  container.id = 'app'

  document.body.appendChild(container)

  window.onload = function() {

  if (process.env.isMiniprogram) {

  // 小程序

  document.documentElement.style.fontSize = wx.getSystemInfoSync().screenWidth / 16 + 'px'

  } else {

  // Web 端

  document.documentElement.style.fontSize = document.documentElement.getBoundingClientRect().width / 16 + 'px'

  }

  }

  return new Vue({

  el: '#app',

  render: h => h(App)

  })

  }

  2.8 小程序端效果預覽

  npm run mp

圖片4

tags:
聲明:本站稿件版權均屬千鋒教育所有,未經許可不得擅自轉載。
10年以上業內強師集結,手把手帶你蛻變精英
請您保持通訊暢通,專屬學習老師24小時內將與您1V1溝通
免費領取
今日已有369人領取成功
劉同學 138****2860 剛剛成功領取
王同學 131****2015 剛剛成功領取
張同學 133****4652 剛剛成功領取
李同學 135****8607 剛剛成功領取
楊同學 132****5667 剛剛成功領取
岳同學 134****6652 剛剛成功領取
梁同學 157****2950 剛剛成功領取
劉同學 189****1015 剛剛成功領取
張同學 155****4678 剛剛成功領取
鄒同學 139****2907 剛剛成功領取
董同學 138****2867 剛剛成功領取
周同學 136****3602 剛剛成功領取
相關推薦HOT
開班信息
北京校區
  • 北京校區
  • 大連校區
  • 廣州校區
  • 成都校區
  • 杭州校區
  • 長沙校區
  • 合肥校區
  • 南京校區
  • 上海校區
  • 深圳校區
  • 武漢校區
  • 鄭州校區
  • 西安校區
  • 青島校區
  • 重慶校區
  • 太原校區
  • 沈陽校區
  • 南昌校區
  • 哈爾濱校區
主站蜘蛛池模板: 国产精品对白刺激久久久| 免费毛片a线观看| 97色伦图片| 大陆三级理论电影有哪些| 欧美黄色免费看| 豪妇荡乳1一5白玉兰| 色婷婷激婷婷深爱五月小蛇| 一个人晚上在线观看的免费视频| 抽搐一进一出在深一点| 天堂影院www陈冠希张柏芝| 亚洲人成网亚洲欧洲无码| 日本在线免费看片| 欧美最猛黑人xxxx黑人猛交98| 毛片女人| 欧美激情一区二区| 福利视频亚洲| 亚洲国产另类久久久精品小说| 欧美午夜伦理片| 亚洲伊人电影| 日本黄色片免费观看| 在线观看免费av网站| 播五月婷婷| 国产男男| 在线观看免费av网站| 午夜爽爽影院| 免费中韩高清无专码区2021| 最好看的免费观看视频| 亚洲偷自拍另类图片二区| 亚洲激情影院| 再灬再灬再灬深一点舒服| 美国式的禁忌80版| 向日葵视频app免费下载| 日本韩国在线视频| 精品麻豆国产| 日本午夜免费福利视频| tube8中国69videos| 香蕉av影院| 三男三女换着曰| 四虎永久免费影院| 美女张开腿黄网站免费| 欧美人与动欧交视频|