当前位置: 首页 > news >正文

株洲网站建设兼职网站推广seo系统

株洲网站建设兼职,网站推广seo系统,创建网站的流程是什么,房地产网络推广方案⭐⭐ 小程序专栏#xff1a;小程序开发专栏 ⭐⭐ 个人主页#xff1a;个人主页 目录 ​编辑 一.前言 二.flex弹性布局 flex属性 2.1 display: flex 弹性布局属性 2.2 flex-direction属性 2.3 flex-wrap属性 2.4 flex-flow属性 2.5 justify-content属性 三.首页轮播… ⭐⭐ 小程序专栏小程序开发专栏 ⭐⭐ 个人主页个人主页 目录 ​编辑 一.前言 二.flex弹性布局 flex属性 2.1 display: flex 弹性布局属性 2.2  flex-direction属性 2.3 flex-wrap属性 2.4 flex-flow属性 2.5 justify-content属性 三.首页轮播图 3.2 mockJS模拟数据 四.OA首页的布局 一.前言 今天终于进入正轨了正式使用小程序制作一款App,本专栏以会议OA为示例进行讲解。本文章首先来实现OA的首页 二.flex弹性布局 学习地址Flex 布局语法教程 | 菜鸟教程网页布局layout是CSS的一个重点应用。 布局的传统解决方案基于盒状模型依赖 display属性  position属性  float属性。它对于那些特殊布局非常不方便比如垂直居中就不容易实现。 2009年W3C提出了一种新的方案—-Flex布局可以简便、完整、响应式地实现各种页面布局。目前它已经得到了所有浏览器的支持这意味着现在就能很安全地使用这项功能。 Flex布局将成为未来布..http://www.runoob.com/w3cnote/flex-grammar.html         Flex是Flexible Box的缩写意为”弹性布局”用来为盒状模型提供最大的灵活性。 flex属性 flex-direction 主轴的方向 默认为row flex-wrap 如果一条轴线排不下如何换行 flex-flow 是flex-direction属性和flex-wrap属性的简写形式 justify-content 定义了项目在主轴上的对齐方式 align-items 定义项目在交叉轴上如何对齐 align-content 属性定义了多根轴线的对齐方式 注意设为Flex布局以后子元素的float、clear和vertical-align属性将失效。 2.1 display: flex 弹性布局属性 前端代码 view classbox view1/view view2/view view3/view view4/view view5/view view6/view view7/view view8/view view9/view view10/view view11/view view12/view /view 样式添加 给每一个view设置了宽高为100rpx,众所周知小程序的手机端的宽度是750rpx .box{height: 750rpx;width: 750rpx;background-color: pink;display: flex; } view{height: 100rpx;width: 100rpx;border: 1px solid greenyellow; } 添加display: flex之前与之后的对比 2.2  flex-direction属性 flex-direction属性决定主轴的方向即项目的排列方向。 flex-direction: row | row-reverse | column | column-reverse;2.3 flex-wrap属性 默认情况下项目都排在一条线又称”轴线”上。flex-wrap属性定义如果一条轴线排不下如何换行。 flex-wrap: nowrap (不换行) | wrap | wrap-reverse; 2.4 flex-flow属性 flex-flow属性是flex-direction属性和flex-wrap属性的简写形式就是将两者结合起来了默认值为row nowrap。 2.5 justify-content属性 justify-content: flex-start居右对齐 | flex-end居左对齐 | center居中对齐 | space-between两端对齐项目之间的间隔都相等 | space-around每个项目两侧的间隔相等。所以项目之间的间隔比项目与边框的间隔大一倍。三.首页轮播图 3.1   我们先把一级菜单底座打好 在app.json里面 pages:[pages/index/index,pages/meeting/list/list,pages/vote/list/list,pages/ucenter/index/index,pages/logs/logs], tabBar: {list: [{pagePath: pages/index/index,text: 首页,iconPath: /static/tabBar/coding.png,selectedIconPath: /static/tabBar/coding-active.png},{pagePath: pages/meeting/list/list,iconPath: /static/tabBar/sdk.png,selectedIconPath: /static/tabBar/sdk-active.png,text: 会议},{pagePath: pages/vote/list/list,iconPath: /static/tabBar/template.png,selectedIconPath: /static/tabBar/template-active.png,text: 投票},{pagePath: pages/ucenter/index/index,iconPath: /static/tabBar/component.png,selectedIconPath: /static/tabBar/component-active.png,text: 设置}]}, 3.2 mockJS模拟数据 定义接口 右击新建立一个文件夹 在app.js里面定义接口 // 以下是业务服务器API地址// 本机开发API地址var WxApiRoot http://localhost:8080/demo/wx/;// 测试环境部署api地址// var WxApiRoot http://192.168.0.101:8070/demo/wx/;// 线上平台api地址//var WxApiRoot https://www.oa-mini.com/demo/wx/;module.exports {IndexUrl: WxApiRoot home/index, //首页数据接口SwiperImgs: WxApiRootswiperImgs, //轮播图MettingInfos: WxApiRootmeeting/list, //会议信息}; 前端轮播图代码index.wxml 这段代码是从官网拿的里面的属性官网中可以看到视图容器 / swiper (qq.com)https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html !--index.wxml-- viewswiper autoplaytrue indicator-dotstrue indicator-color#fff indicator-active-color#00fblock wx:for{{imgSrcs}} wx:keytextswiper-itemviewimage src{{item.img}} classswiper-item //view/swiper-item/block/swiper /view 样式index.wxss .swiper-item {height: 300rpx;width: 100%;border-radius: 10rpx; } 在index.js里面添加轮播图方法 // 轮播图数据loadSwiperImgs(){let thatthis;wx.request({url: api.SwiperImgs,dataType: json,success(res) {console.log(res)that.setData({imgSrcs:res.data.images})}})}, 在index.js的onload方法中调用 onLoad() {if (wx.getUserProfile) {this.setData({canIUseGetUserProfile: true})}this.loadSwiperImgs();}, 在index.js里面 接口mockjs // 轮播图 mockjs const api require(../config/app.js); 注意在这里我们用的是http的网址不是https所以会报错我们需要修改 接着点开调式器的mock,在里面新增接口  json数据 {data: {images:[{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner1.png,text: 1},{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner2.png,text: 2},{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner3.png,text: 3},{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner4.png,text: 4},{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner5.png,text: 5},{img: https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner6.png,text: 6} ]},statusCode: 200,header: {content-type:applicaiton/json;charsetutf-8} } 这样就可以啦看看效果 四.OA首页的布局 mock数据 lists: [{id: 1,image: /static/persons/1.jpg,title: 对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】,num:304,state:进行中,starttime: 2022-03-13 00:00:00,location: 深圳市·南山区},{id: 1,image: /static/persons/2.jpg,title: AI WORLD 2016世界人工智能大会,num:380,state:已结束,starttime: 2022-03-15 00:00:00,location: 北京市·朝阳区},{id: 1,image: /static/persons/3.jpg,title: H100太空商业大会,num:500,state:进行中,starttime: 2022-03-13 00:00:00,location: 大连市},{id: 1,image: /static/persons/4.jpg,title: 报名年度盛事大咖云集2016凤凰国际论坛邀您“与世界对话”,num:150,state:已结束,starttime: 2022-03-13 00:00:00,location: 北京市·朝阳区},{id: 1,image: /static/persons/5.jpg,title: 新质生活 · 品质时代 2016消费升级创新大会,num:217,state:进行中,starttime: 2022-03-13 00:00:00,location: 北京市·朝阳区}]}, 前端index.wxml: view classmobi-titletext classmobi-icon/texttext会议信息/text /view block wx:for-items{{lists}} wx:for-itemitem wx:keyitem.idview classlist data-id{{item.id}}view classlist-imgimage classvideo-img modescaleToFill src{{item.image}}/image/viewview classlist-detailview classlist-titletext{{item.title}}/text/viewview classlist-tagview classstate{{item.state}}/viewview classjointext classlist-num{{item.num}}/text人报名/view/viewview classlist-infotext{{item.location}}/text|text{{item.starttime}}/text/view/view/view /block view classsection bottom-linetext到底啦/text /view样式index.wxss .mobi-title {font-size: 12pt;color: #777;line-height: 110%;font-weight: bold;width: 100%;padding: 15rpx;background-color: #f3f3f3; }.mobi-icon {padding: 0rpx 3rpx;border-radius: 3rpx;background-color: #ff7777;position: relative;margin-right: 10rpx; }/*list*/ .list {display: flex;flex-direction: row;width: 100%;padding: 0 20rpx 0 0;border-top: 1px solid #eeeeee;background-color: #fff;margin-bottom: 5rpx;/* border-radius: 20rpx;box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.1); */ }.list-img {display: flex;margin: 10rpx 10rpx;width: 150rpx;height: 220rpx;justify-content: center;align-items: center; }.list-img .video-img {width: 120rpx;height: 120rpx;}.list-detail {margin: 10rpx 10rpx;display: flex;flex-direction: column;width: 600rpx;height: 220rpx; }.list-title text {font-size: 11pt;color: #333;font-weight: bold; }.list-detail .list-tag {display: flex;height: 70rpx; }.list-tag .state {font-size: 9pt;color: #81aaf7;width: 120rpx;border: 1px solid #93b9ff;border-radius: 2px;margin: 10rpx 0rpx;display: flex;justify-content: center;align-items: center; }.list-tag .join {font-size: 11pt;color: #bbb;margin-left: 20rpx;display: flex;justify-content: center;align-items: center; }.list-tag .list-num {font-size: 11pt;color: #ff6666; }.list-info {font-size: 9pt;color: #bbb;margin-top: 20rpx; } .bottom-line{display: flex;height: 60rpx;justify-content: center;align-items: center;background-color: #f3f3f3; } .bottom-line text{font-size: 9pt;color: #666; } 效果 好啦今天的分享就到这啦
http://www.hkea.cn/news/14452839/

相关文章:

  • 大学生课程设计网站万网如何做网站
  • 深圳做网站便宜网络推广运营团队
  • 荣成市信用建设网站网站采用什么方法建设
  • 免费家装设计网站科技公司名字
  • 建设厅网站沙场限期通知书行政事业单位网站建设
  • 新万网站建设平面设计网站灵感
  • 网站建设公司 - 百度wordpress重新发布
  • 网站建设百度小程序荆门网站建设公司
  • 智能建站网站广东住房和建设局网站官网
  • 打字赚钱一单一结appseo关键词怎么选
  • asp网站后台模板wordpress 机主题
  • 网站建设哪个最好网站建设属什么资产
  • 成都网站建设好软件网页制作
  • 国外设计工作室网站厦门做商城网站
  • 烫画图案设计网站做网站怎么接业务
  • 一个后台可以做几个网站网站开发问题论文
  • 万网网站流量百度手机助手下载2021新版
  • 中小企业网站建设市场国外办公室设计欣赏
  • 网页设计培训平台金华网站建设seo
  • wordpress主题出售seo 优化案例
  • 苏州建设网站多少钱线上外贸平台有哪些
  • 做流量网站有收入吗国外电商网站如何建立
  • 网站wap设置个人身份调查网站
  • 网站 备案 时间网站建设预算表
  • 推广网站平台有哪些wordpress禁止收录
  • 做网站美工要学什么软件石家庄有什么做网站的公司
  • 茂名做网站报价如何做产品展示网站
  • 青岛李沧建设局网站广西桂林旅游必去十大景点
  • 建设部门户网站条例免费下载注册品牌商标流程及费用
  • 律师事务所东莞网站建设微商如何做网站引流