博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序v0.10基本布局
阅读量:4993 次
发布时间:2019-06-12

本文共 1158 字,大约阅读时间需要 3 分钟。

 

 

//index.js//获取应用实例const app = getApp()Page({  data: {  }})
/**index.wxss**/#thev { width: 500rpx; height: 500rpx; background-color: #ff0000; margin: 50rpx 0; padding: 50rpx; border: solid #0000FF 50rpx;}#inv{ width: 100rpx; height: 100rpx; background-color: #00FF00;}.sndv { width: 100rpx; height: 100rpx; background-color: #000000;}

  

 

/* pages/index2/index2.wxss */#container{ display: flex; flex-direction: row; justify-content: space-around; align-items: stretch; width: 100%; height: 700rpx; background-color: #DDDDDD;}.cubic{ width: 100rpx; background-color: #000000;}.color-red{ background-color: #ff0000;}.color-green{ background-color: #00ff00;}.color-blue{ background-color: #0000ff;}.color-yellow{ background-color: #ffff00;}

  

app.json

{  "pages": [    "pages/index2/index2",    "pages/index/index"  ],  "window": {    "backgroundTextStyle": "light",    "navigationBarBackgroundColor": "#000000",    "navigationBarTitleText": "WeChat",    "navigationBarTextStyle": "black"  }}

  

转载于:https://www.cnblogs.com/tabCtrlShift/p/9218698.html

你可能感兴趣的文章
C/C++中各种类型int、long、double、char表示范围(最大最小值)
查看>>
Linux环境下Eclipse + Tomcat + MySQL 配置J2EE开发环境的方法
查看>>
机器学习实战:第九章 树回归
查看>>
while(~scanf("%d %d",&a,&b))和while(scanf("%d %d",&a,&b)!=EOF)
查看>>
使用vs code开发纸壳CMS并启用Razor智能提示
查看>>
动态投资回收期Pt小于计算期n
查看>>
Python模拟登入豆瓣网,并爬取小组信息
查看>>
初识Jsp,JavaBean,Servlet以及一个简单mvc模式的登录界面
查看>>
@import与link的区别与选择
查看>>
ORA-14411 该 DDL 不能与其他 DDL 并行运行处理办法
查看>>
C#筛法求出范围内的所有质数
查看>>
程序员常用的几款软件
查看>>
noi2014 起床困难综合症
查看>>
.NET ->> 分享一个字符串模糊匹配指数的方法
查看>>
HDU2907凸包+凹面
查看>>
BZOJ 1600: [Usaco2008 Oct]建造栅栏
查看>>
BZOJ 1574: [Usaco2009 Jan]地震损坏Damage
查看>>
Tiny4412 LED 程序
查看>>
电脑购买建议
查看>>
[C++]for 循环多个限制条件
查看>>