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

怎么做b2b网站吗网站域名查询ip

怎么做b2b网站吗,网站域名查询ip,微信做单页的网站,哈尔滨营销型网站建设公司文章目录 1. 官方文档教程2. 编写静态页面3. 关于作者其它项目视频教程介绍 1. 官方文档教程 https://developers.weixin.qq.com/miniprogram/dev/framework/ 2. 编写静态页面 mine.wxml布局文件 <!--index.wxml--> <navigation-bar title"个人中心" ba…

文章目录

    • 1. 官方文档教程
    • 2. 编写静态页面
    • 3. 关于作者其它项目视频教程介绍

1. 官方文档教程

  1. https://developers.weixin.qq.com/miniprogram/dev/framework/

2. 编写静态页面

  1. mine.wxml布局文件
<!--index.wxml-->
<navigation-bar title="个人中心" back="{{false}}" color="#ffffff" background="#f7b451"></navigation-bar><scroll-view class="scrollarea" scroll-y type="list"><view class="mine-container"><image src="https://img1.baidu.com/it/u=1167785969,3358198230&fm=253&fmt=auto&app=120&f=JPEG?w=800&h=800" mode="" bind:tap="btnUpLoadAvatarHandle" /><view class="user-info-container"><text class="username">wangwu</text><text class="nickname">这个家伙很懒,什么都没有留下~</text></view></view><view class="navigation-center-container"><view class="navigation-collect-container" bind:tap="collectHandle"><image src="../../assets/ic_kf.png" mode="" /><text>官方客服</text></view><view class="navigation-collect-container" bind:tap="onNoteClickHandle"><image src="../../assets/ic_jf.png" mode="" /><text>积分兑换</text></view><view class="navigation-collect-container" bind:tap="collectHandle"><image src="../../assets/ic_bz.png" mode="" /><text>帮助中心</text></view><view class="navigation-collect-container" bind:tap="onNoteClickHandle"><image src="../../assets/ic_sz.png" mode="" /><text>系统设置</text></view></view><view class="line"></view><view class="navigation-item-container" bind:tap="editPwdHandle"><text>修改密码</text><image src="../../assets/ic_right_ror.png" /></view><view class="line2"></view><view class="navigation-item-container" bind:tap="onAboutClickHandle"><text>关于APP</text><image src="../../assets/ic_right_ror.png" /></view><view class="line2"></view><view class="line"></view><view class="navigation-item-container" bind:tap="clearHandle"><text>清理缓存</text><image src="../../assets/ic_right_ror.png" /></view><view class="line2"></view><view class="navigation-item-container"><text>用户条款</text><image src="../../assets/ic_right_ror.png" /></view><view class="line2"></view><view class="navigation-item-container"><text>隐私协议</text><image src="../../assets/ic_right_ror.png" /></view><view class="line2"></view><view class="navigation-exit-container" bind:tap="onExitHandle"><text>退出登录</text></view></scroll-view>

navigation-bar为创建项目,系统提供一个默认的顶部导航栏组件

  1. mine.wxss 样式文件
page {height: 100vh;display: flex;flex-direction: column;background-color: #f5f5f5;
}.scrollarea {flex: 1;overflow-y: hidden;
}.mine-container {display: flex;flex-direction: row;padding: 50rpx;align-items: center;background-color: #f7b451;
}.mine-container image {width: 150rpx;height: 150rpx;border-radius: 50%;
}.user-info-container {display: flex;margin-left: 20rpx;flex-direction: column;}.username {font-weight: 700;font-size: 34rpx;color: white;
}.nickname {color: #999999;margin-top: 20rpx;font-size: 26rpx;color: white;
}.line {display: flex;height: 20rpx;background-color: #f5f5f5;
}.line2 {display: flex;height: 1rpx;background-color: #f5f5f5;
}.navigation-item-container {display: flex;flex-direction: row;justify-content: space-between;align-items: center;height: 80rpx;padding-left: 20rpx;padding-right: 20rpx;background-color: #ffffff;
}.navigation-item-container image {width: 30rpx;height: 30rpx;
}.navigation-item-container text {color: #999999;font-size: 26rpx;
}.navigation-exit-container {display: flex;justify-content: center;margin-top: 150rpx;height: 80rpx;background: #f5f5f5;line-height: 80rpx;color: #999999;font-size: 26rpx;background-color: #ffffff;
}.navigation-center-container {display: flex;flex-direction: row;justify-content: space-around;padding: 40rpx 0;margin-left: 20rpx;margin-right: 20rpx;margin-top: -20rpx;background-color: #ffffff;
}.navigation-collect-container {display: flex;flex-direction: column;align-items: center;}.navigation-center-container image {width: 50rpx;height: 50rpx;
}.navigation-center-container text {margin-top: 10rpx;color: #999999;font-size: 22rpx;
}
  1. 运行效果图

在这里插入图片描述

3. 关于作者其它项目视频教程介绍

本人在b站录制的一些视频教程项目,免费供大家学习

  1. Android新闻资讯app实战:https://www.bilibili.com/video/BV1CA1vYoEad/?vd_source=984bb03f768809c7d33f20179343d8c8
  2. Androidstudio开发购物商城实战:https://www.bilibili.com/video/BV1PjHfeXE8U/?vd_source=984bb03f768809c7d33f20179343d8c8
  3. Android开发备忘录记事本实战:https://www.bilibili.com/video/BV1FJ4m1u76G?vd_source=984bb03f768809c7d33f20179343d8c8&spm_id_from=333.788.videopod.sections
  4. Androidstudio底部导航栏实现:https://www.bilibili.com/video/BV1XB4y1d7et/?spm_id_from=333.337.search-card.all.click&vd_source=984bb03f768809c7d33f20179343d8c8
  5. Android使用TabLayout+ViewPager2实现左右滑动切换:https://www.bilibili.com/video/BV1Mz4y1c7eX/?spm_id_from=333.337.search-card.all.click&vd_source=984bb03f768809c7d33f20179343d8c8
http://www.hkea.cn/news/600797/

相关文章:

  • 建购物网站怎么建呀简单的网站建设
  • 江苏省建设教育协会网站首页百度知道合伙人答题兼职入口
  • 做优化的网站平台搭建
  • 做网站需要多久网络推广是什么专业
  • 厦门加盟网站建设线上推广营销
  • 定制网站案例seo搜索引擎优化薪酬
  • 网站制作成功后怎么使用浏览器观看b站视频的最佳设置
  • 一家专门做开网店的网站北京seo专员
  • 专业企业网站搭建服务头条权重查询
  • 去哪儿网站上做民宿需要材料免费的黄冈网站有哪些平台
  • 网站建设网现在推广什么app最挣钱
  • 嘉兴装修公司做网站安装百度到桌面
  • 电商网站特点外贸营销网站建站
  • 上海市住房城乡建设管理委员会网站网络营销软文范例大全800
  • 莱芜区政协网站做网络优化的公司排名
  • 太原网站建设开发公司电商运营基本知识
  • php做企业网站seo网站推广企业
  • 万网网站备案授权书免费发布推广信息的b2b
  • 乡镇可以做门户网站seo是什么意思职业
  • 建设银行网站优点做个公司网站大概多少钱
  • 网站标题的设置方法哪家建设公司网站
  • 网站空间托管电商平台的营销方式
  • 网站制作专业的公司有哪些seo网站编辑是做什么的
  • wordpress 分栏seo怎么优化简述
  • php网站开发 多少钱推广方案策划
  • 芜湖做网站公司广州seo好找工作吗
  • 做网站找客户百度竞价推广公司
  • 深圳网站建设怎么办互联网营销的优势
  • 课程网站开发背景网站推广的几种方法
  • 商城网站建设模板一份完整的营销策划方案