赞
踩
“婚礼邀请函”微信小程序由4个页面组成,分别是“邀请函”页面、“照片”页面、“美好时光”页面和“宾客信息”页面。每个页面顶部的导航栏和底部的标签栏是公共部分,在每个页面中都会出现;页面中间的部分是页面内容,每个页面的内容都不同。
“邀请函”页面
“照片”页面
“美好时光”页面
“宾客”页面
项目名称:婚礼邀请函
单击【确认】按钮
images
目录,拷贝项目所需图片htdocs
目录index.js
var express = require('express'); //创建express框架的示例
var app = express(); //创建Wxpress框架的实例
app.use(express.static('./htdocs')); //设置静态资源目录
app.listen(8088, res => {//web应用监听8088端口
console.log('服务器启动成功,访问地址:http://localhost:8088/文件名');
});
node index.js
http://localhost:8080/01.mp4
app.json
文件里配置四个页面list
数组里配置标签按钮"tabBar": { "color": "#ccc", "selectedColor": "#ff4c91", "borderStyle": "white", "backgroundColor": "#fff", "list": [ { "pagePath": "pages/index/index", "iconPath": "images/invite.png", "selectedIconPath": "images/invite.png", "text": "邀请函" }, { "pagePath": "pages/photo/photo", "iconPath": "images/marry.png", "selectedIconPath": "images/marry.png", "text": "照片" }, { "pagePath": "pages/time/time", "iconPath": "images/video.png", "selectedIconPath": "images/video.png", "text": "美好时光" }, { "pagePath": "pages/guest/guest", "iconPath": "images/guest.png", "selectedIconPath": "images/guest.png", "text": "宾客信息" } ] },
配置“邀请函”页面的导航栏
查看预览效果
配置“照片”页面的导航栏
查看预览效果
配置“美好时光”页面的导航栏
查看预览效果
配置“宾客信息”页面的导航栏
查看预览效果
修改全局配置栏配置
查看预览效果
app.wxss
文件里定义公共样式index.wxml
文件里添加图像组件align-items
).content {
width: 100vw;
height: 200vh;
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
}
/* 顶部图片区域样式 */
.content-gif {
width: 30vw;
height: 18.6vh;
margin-bottom: 1.5vh;
}
.content-title {
font-size: 5vh;
color: #ff4c91;
text-align: center;
margin-bottom: 2.5vh;
}
/* 合照区域样式 */
.content-avatar image{
width: 24vh;
height: 24vh;
border:3px solid #ff4c91;
border-radius: 50%;
}
/* 新郎和新娘区域样式 */ .content-info { width: 50vw; display: flex; flex-direction: row; align-items: center; text-align: center; } /* 新郎和新娘姓名样式 */ .content-name { position: relative; font-size: 2.7vh; font-weight: 700; line-height: 4.5vh; color: #ff4c91; } /* 新郎和新郎电话图片样式 */ .content-name>image { width: 2.6vh; height: 2.6vh; border: 1px solid #ff4c91; border-radius: 50%; position: absolute; top: -1vh; right: -3.6vh; } /* 新郎和新娘中间的双喜图片样式 */ .content-wedding { flex: 1; } .content-wedding>image { width: 5.5vh; height: 5.5vh; margin-left: 1vh; }
photo.wxml
文件里,实现轮播图效果<swiper indicator-dots="true" indicator-active-color="#ff4c91" indicator-color="white" circular="true" autoplay="true" interval="3000" vertical="true">
<swiper-item>
<image src="/images/timeg1.png"/>
</swiper-item>
<swiper-item>
<image src="/images/timeg2.png"/>
</swiper-item>
<swiper-item>
<image src="/images/timeg3.png"/>
</swiper-item>
<swiper-item>
<image src="/images/timeg4.png"/>
</swiper-item>
</swiper>
time.wxss
文件里设置图片的样式swiper {
width: 100vw;
height: 100vh;
}
/* 设置轮播图片的尺寸 */
swiper-item image {
width: 100vw;
height: 100vh;
}
time.wxml
文件里编写“美好时光”页面结构time.wxss
文件里实现“美好时光”页面的样式/* pages/time/time.wxss */ /**index.wxss**/ /* *外层view组件样式* */ .video { box-shadow: 0 8rpx 17rpx 0 rgba(7, 17, 27, .1); margin: 10rpx 25rpx; padding: 20rpx; margin-bottom: 30rpx; border-radius: 10rpx; text-align: center; background: #eee; } /* 标题区域 */ .video-title { font-size: 35rpx; color: #555; } /* 拍摄日期区域样式 */ .video-time { font-size: 26rpx; color: #888; } /* 视频区域样式 */ .video video { width: 100%; margin-top: 28rpx; border-radius: 10rpx; }
guest.wxml
里添加图像组件,设置背景图片input
组件input
组件在相应位置添加一个文本组件,一个多选按钮组和三个多选按钮
查看“宾客信息”结构代码
<form> <view class="content"> <!--姓名--> <view class="name"> <input name="name" placeholder="输入您的姓名" placeholder-class="phcolor" type="text"/> </view> <!-- 手机号 --> <view class="telephone"> <input name="telephone" placeholder="输入您的手机号码" placeholder-class="phcolor" type="number"/> </view> <!-- 性别 --> <view class="gender"> <text>请选择您的性别:</text> <radio-group> <radio>男</radio> <radio>女</radio> </radio-group> </view> <!-- 需要的点心 --> <view class="dessert"> <text>请选择您需要的点心:</text> <checkbox-group> <checkbox>蛋糕</checkbox> <checkbox>甜甜圈</checkbox> <checkbox>巧克力</checkbox> </checkbox-group> </view> <!-- 提交按钮 --> <button>提交</button> </view> </form>
在guest.wxss
文件里定义.bg
类样式
查看预览效果
表单内容在背景图片下面去了,要向上滑动才能看见
guest.wxss
文件里定义.content
样式类在guest.wxss
文件里定义.content .name
样式类
guest.wxss
文件里定义.content .telephone
样式类guest.wxss
文件里定义.content .gender
样式类guest.wxss
文件里定义.content .dessert
样式类guest.wxss
文件里定义.content button
样式类Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。