vue+tailwindcss前端框架

安装命令

npm create ***
cd ***
vue add tailwind
npm install postcss-cli@^7 -g

代码补全插件

npm install autocomplete
安装Tailwind CSS IntelliSense插件

关于为什么要进行版本控制,stackoverflow上已经有人作答。

Vue 3 is one thing that does not yet have postcss 8 support. You’re integrating Tailwind with a tool that relies on an older version of PostCSS. You can use this doc https://tailwindcss.com/docs/installation#post-css-7-compatibility-build

vscode tailwind.css报错问题

根据tailwind插件提示,在设置中将css.validate关闭即可。
在这里插入图片描述

至此框架搭建完成。

autoprefixer、postcss

主要解决兼容性问题,使用autoprefixer和postcss-cli给css加上浏览器厂商前缀,让它自动给所有的css文件添加浏览器厂商前缀。因此我们可以使用autoprefixer这个插件来自动给css文件加上浏览器厂商前缀。

sm,md,lg,xl对应分辨率参考

  • sm: 640X800
  • md: 768X800
  • lg: 1024X800
  • xl: 1280X800

响应式页面Demo

<template>
  
  <div class="h-auto w-full bg-indigo-900 sm:flex sm:justify-between sm:items-center">
    <div class="flex justify-between items-center pb-2 px-5 py-2">
      <div class="text-4xl text-white font-title ">WorkCation</div>
      <div class="iconfont more-bf font-bold text-white pr-2 sm:hidden text-2xl" @click="isOpen=!isOpen"></div>
    </div>
    <div class="absolute sm:static sm:flex sm:items-center px-4 py-2 bg-indigo-900 w-full sm:w-auto" :class="isOpen?'block':'hidden'">
      <div class="px-4 text-white py-2 hover:bg-indigo-500 rounded font-semibold sm:px-2 sm:text-sm xl:text-xl xl:px-4">Home</div>
      <div class="px-4 text-white py-2 hover:bg-indigo-500 rounded font-semibold sm:px-2 sm:text-sm xl:text-xl xl:px-4">List your property</div>
      <div class="px-4 text-white py-2 hover:bg-indigo-500 rounded font-semibold sm:px-2 sm:text-sm xl:text-xl xl:px-4">Tipe</div>
      <div class="px-4 text-white py-2 hover:bg-indigo-500 rounded font-semibold sm:px-2 sm:text-sm xl:text-xl xl:px-4 ">Messages</div>
    </div>
  </div>
  <div class="flex bg-white lg:h-3/4 ">
    <div class="max-w-md m-auto px-10 py-3 sm:px-0 lg:w-full lg:px-10 lg:py-16">
      <div class="flex justify-start items-end">
        <div class="iconfont vacation-bf text-4xl text-indigo-500 font-bold"></div>
        <div class="flex text-2xl ml-3 pt-3 font-semibold">Work<div class="text-indigo-500">cation</div></div>
      </div>
      <img src="./assets/img/img2.jpg" alt="" class="mt-5 rounded-lg shadow-lg lg:hidden">
      <h1 class="mt-5 font-bold text-xl leading-tight text-left sm:text-2xl">
        You can word from anywhere.
        <br>
        <span class="text-indigo-500">Take advantage of it.</span>
      </h1>
      <p class="mt-3 text-gray-500 text-left sm:text-lg">Workcation helps you find work-friendly rentals in beautiful location so you can enjoy some nice weather even when you're not on vation.</p>
      <div class="mt-3 flex justify-around media-min">
        <a href="#" class="btn bg-indigo-500 text-white w-max">BOOK YOUR ESCAPE</a>
        <a href="#" class="bg-gray-500 text-white btn w-max">LEARN MORE</a>
      </div>
    </div>
    <div class="w-1/2 hidden lg:block lg:relative">
      <img src="./assets/img/img2.jpg" alt="" class="absolute inset-0 w-full h-full object-cover object-center m">
    </div>
  </div>
  
</template>

<script>


export default {
  name: 'App',
  components: {
    
  },
  data(){
    return{
      isOpen:false
    }
  }
}

</script>

<style>

.font-title{
  font-family: 'Lobster', cursive;
}

@media screen and (max-width:409px){
  .media-min{
    flex-direction: column;
  }
  .media-min a{
    margin-top: 0.5rem;
  }
}
</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值