Skip to content

joeaaa/wedding

 
 

Repository files navigation

婚礼互动,让你们的婚礼飞起来

缘起

这个项目就是在我婚礼前一个月左右,心血来潮,想在婚礼上搞点事情,给大家留个深刻的印象。最终婚礼上的反响还不错,近期想着与其让这个项目尘封,倒不如开源出来,祝愿所有的 forker 有情人终成眷属。

介绍

项目分为微信端和大屏端。微信端可以作为电子请柬提前分享给大家,部署的服务器域名最好有备案,不然容易被屏蔽。大屏端是放在婚礼现场的大屏幕上,现场的宾客可以刷弹幕上墙,并且有照片播放页,迎宾页,抽奖页面。另外微信端也作为现场互动的入口,扫码签到可参与抽奖,发弹幕送祝福上大屏幕。

微信端 /

微信端

大屏端 /wall (上下方向键切换不同屏):

大屏端欢迎页

安装

下载本项目

> git clone https://github.com/iammapping/wedding

到项目根目录初始化:npm install

安装 sails

> npm install sails -g

启动:sails lift,生产环境加上 --prod 参数。

配置

配置微信公众号

> vi config/weixin.js
module.exports.weixin = {
  // 微信公众号相关设置
  appid: 'xxx',
  secret: 'xxx',
  redirectUri: 'http://xxx'
};

配置数据库

导入表结构

mysql> create database wedding;
mysql> source wedding.sql;

修改连接参数(使用 Sequelize 替代了 Sails 框架中默认的 Waterline)

> vi config/connections.js
sequelizeServer: {
  user: 'xxx',
  password: 'xxx',
  database: 'wedding',
  options: {
  dialect: 'mysql',
  dialectOptions: {
    charset: 'utf8mb4'
  },
  host: '127.0.0.1',
  port: 3306,
  logging: true,
  timezone: "+08:00",
  }
}

修改图片素材

微信端在 views/homepage.ejs 中修改,公告也在此文件修改

<img class="disable-tilt" src="/images/1-740.jpg" data-width="1500" data-height="1000" data-center-offset="740" />
...
  • data-width:图片宽度
  • data-height:图片高度
  • data-center-offset:图片主题中线x轴位置

大屏端在 assets/styles/wall.css 中修改

#slide1 {
  background-image: url(/images/1-740.jpg);
}
...

修改背景音乐

assets/js/home.js 中修改

PM.bgm = new PM.BGM($('#bgm-audio'), {
  src: '/audios/pm_bgm2.mp3',
  autoplay: false
});

修改地图位置

assets/js/pm.js 中修改

var map = new AMap.Map('pnl-map',{
  zoom: 17,
  center: [115.977634, 29.709759]
});
var marker = new AMap.Marker({
  position: map.getCenter()
});
marker.setMap(map);

// 设置label标签
marker.setLabel({
  offset: new AMap.Pixel(-75, -30),
  content: "PM Infinity婚礼于10月5日晚"
});

center 修改中心坐标,content 修改坐标说明的文字

彩蛋

在链接中加上 ?state=present 可以直接签到在现场,可用于婚礼现场扫码签到。

致谢

感谢媳妇的支持,感谢大家的祝福。

感谢项目中使用的所有开源项目和服务:

  • Mysql、Nodejs、Sails、Sequelize、Bluebird
  • WeUI、jQuery、jquery.fullPage、slick、CommentCoreLibrary(CCL弹幕)、高德地图、iconfront

License

Copyright 2017 iammapping

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

婚礼大屏互动,微信请柬一站式解决方案

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 65.5%
  • HTML 29.5%
  • CSS 5.0%