Merge branch 'master' of https://bdgit.educoder.net/pu6ej7yq9/git
# Conflicts: # scr/food/app.jsonmaster
commit
170d0265f0
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 329 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
<!--turning.wxml-->
|
||||||
|
<view class="container">
|
||||||
|
<image src='/images/bg_2.png' class="bg_2"></image>
|
||||||
|
<image src='/images/start.png' animation="{{rotate}}" bindtap="start" class="start"></image>
|
||||||
|
|
||||||
|
<view class="detail">自选餐</view>
|
||||||
|
<view class="detail">麻辣烫</view>
|
||||||
|
<view class="detail">汉堡炸鸡</view>
|
||||||
|
<view class="detail">面食</view>
|
||||||
|
<view class="detail">烤盘饭</view>
|
||||||
|
<view class="detail">煎饼果子</view>
|
||||||
|
|
||||||
|
<view class="btnView">
|
||||||
|
<button class="btn1" type="warn" plain="true">加入购物车</button>
|
||||||
|
</view>
|
||||||
|
</view>
|
@ -0,0 +1,76 @@
|
|||||||
|
/**index.wxss**/
|
||||||
|
.container view{
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 100px;
|
||||||
|
}
|
||||||
|
.bg_2{
|
||||||
|
width: 600rpx;
|
||||||
|
height: 600rpx;
|
||||||
|
position: absolute;
|
||||||
|
top: 80rpx;
|
||||||
|
}
|
||||||
|
.start{
|
||||||
|
width: 134rpx;
|
||||||
|
height: 163rpx;
|
||||||
|
position: absolute;
|
||||||
|
top: 280rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail{
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
/* 自选餐 */
|
||||||
|
.container>.detail:nth-child(3){
|
||||||
|
font-size: 20px;
|
||||||
|
top:35px;left:125px;
|
||||||
|
width: 70px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(3, 10, 32);
|
||||||
|
}
|
||||||
|
/* 麻辣烫 */
|
||||||
|
.container>.detail:nth-child(4){
|
||||||
|
font-size: 20px;
|
||||||
|
top:75px;left:185px;
|
||||||
|
width: 70px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(0, 0, 0);
|
||||||
|
}
|
||||||
|
/* 炸鸡汉堡 */
|
||||||
|
.container>.detail:nth-child(5){
|
||||||
|
font-size: 20px;
|
||||||
|
top:145px;left:180px;
|
||||||
|
width: 80px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(2, 3, 7);
|
||||||
|
}
|
||||||
|
/* 面食 */
|
||||||
|
.container>.detail:nth-child(6){
|
||||||
|
font-size: 20px;
|
||||||
|
top:180px;left:125px;
|
||||||
|
width: 70px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(0, 4, 15);
|
||||||
|
}
|
||||||
|
/* 烤盘饭 */
|
||||||
|
.container>.detail:nth-child(7){
|
||||||
|
font-size: 20px;
|
||||||
|
top: 145px;left:65px;
|
||||||
|
width: 70px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(0, 3, 12);
|
||||||
|
}
|
||||||
|
/* 煎饼果子 */
|
||||||
|
.container>.detail:nth-child(8){
|
||||||
|
font-size: 20px;
|
||||||
|
top:80px;left:60px;
|
||||||
|
width: 80px; height: 20px;
|
||||||
|
font-weight:bold;
|
||||||
|
color: rgb(0, 2, 7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container>.btnView>.btn1{
|
||||||
|
top:350px;left:-40px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue