Java初学小程序编写MBTI项目mini版-1
编写MBTI小程序第一版(初始化项目、编写首页代码)
1. 初始化项目 使用taro + ts
初始化项目后,安装依赖
1
npm install
正常启动项目,全局入口app.ts处引入taro ui 组件
1
import 'taro-ui/dist/style/index.scss'
2. 编写初始化页面代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23import { View, Image } from "@tarojs/components";
import "taro-ui/dist/style/components/button.scss"; // 按需引入
import { AtButton } from "taro-ui";
import homeBg from "../../ImglistDir/homeBg.png";
import "./index.scss";
import GlobalFooter from "../../components/GlobalFooter";
export default () => {
return (
<View className="homePage">
<View className="oneTitle">MBTI 性格测试</View>
<View className="twoTitle">
只需 2 分钟,就能非常准确的描述出你是谁,以及你的性格特点
</View>
<AtButton className="txtBtn" type="primary" circle>
开始测试
</AtButton>
<Image className="homeBg" src={homeBg} />
<GlobalFooter />
</View>
);
};
3. 编写相关样式
1 | .homePage { |