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

省示范院校建设网站修改wordpress的登陆地址

省示范院校建设网站,修改wordpress的登陆地址,中国寰球工程有限公司网站设计,上海建设网站平台一、效果 二、代码 实现思路使用的是官方提供的 movable-area#xff1a;注意点#xff0c;需要设置其高度#xff0c;否则会出现列表内容重叠的现象。由于movable-view需要向右移动#xff0c;左滑的时候给删除控件展示的空间#xff0c;故 movable-area 需要左移 left:…一、效果 二、代码 实现思路使用的是官方提供的 movable-area注意点需要设置其高度否则会出现列表内容重叠的现象。由于movable-view需要向右移动左滑的时候给删除控件展示的空间故 movable-area 需要左移 left: -120rpx;movable-view右移left: 120rpx;。 通过 width: calc(100% - 120rpx);左划的距离。 .moveArea {   display: flex;   flex-direction: row;   width: calc(100% 120rpx);   justify-content: center;   left: -120rpx;   height: 188rpx; }   movable-view .movableView {   display: flex;   flex-direction: row;   width: calc(100% - 120rpx);   z-index: 1001;   left: 120rpx; } Page({/*** 页面的初始数据*/data: {pushedData:[{messageTitle:饼干,messageContent:饼干爱吃}],//已推送数据},/*** 生命周期函数--监听页面加载*/onLoad() {},/*** 生命周期函数--监听页面初次渲染完成*/onReady() {},/*** 生命周期函数--监听页面显示*/onShow() {},/*** 生命周期函数--监听页面隐藏*/onHide() {},/*** 生命周期函数--监听页面卸载*/onUnload() {},/*** 页面相关事件处理函数--监听用户下拉动作*/onPullDownRefresh() {},/*** 页面上拉触底事件的处理函数*/onReachBottom() {},/*** 用户点击右上角分享*/onShareAppMessage() {},// 退出页面logout:function(){wx.navigateBack({})},}) xml代码 !--pakage_kindness_remind/pages/kindess_msg_remind/kindness_msg_remind_pg.wxml-- !-- head -- view classtitle_searchview classseeck_md!-- 返回 --view classlogout bindtaplogoutimage classlogout_ic src/images/msg/return_back.png/imagetext classlogout_txt返回/text/view!--内容模板--view classmsg_title_centerview classmsg bindtapopen_msgtext classmsg_txt数据中心/text/view/view/viewview classlogoutimage classlogout_ic/imagetext classlogout_txt/text/view /view!-- body -- scroll-view classscbg scroll-ytrueblock wx:for{{pushedData}} wx:keyid wx:for-itemitemName wx:for-indexid!-- 子item父布局 --view classitem_parent!-- 日期 4月5日 周二 8:00 --view classdate wx:if{{id0}}{{itemName.pushTime}} /view!-- --movable-area classmoveAreamovable-view classmovableView directionhorizontal inertia{{true}} out-of-bounds{{true}}view styledisplay: flex;flex-direction: row;width: 100%;height: 100%;view classbox_item!--head布局--view classhead_layout!-- itemhead左边模块 天气提醒--view classhead_title{{itemName.messageTitle}}/view/view!--body布局--view classbody_layout{{itemName.messageContent}}/view/view/view/movable-view view classitemDelet删除/view/movable-area/view/block/scroll-view css代码 /* pakage_kindness_remind/pages/kindess_msg_remind/kindness_msg_remind_pg.wxss */Page {background: #f0f0f0;height: 100%;position: fixed; }/* 头部搜索 */ /* 搜索标题 */ .title_search {background: linear-gradient(to right, #0455a7, #62c8ec);height: 170rpx;width: 100%;display: flex;flex-direction: row;align-items: flex-end;justify-content: flex-start; }.seeck_md {display: flex;flex-direction: row;width: 100%;justify-content: flex-start;align-items: flex-end; }/* 消息 */ .msg {width: 180rpx;height: 90rpx;display: flex;flex-direction: column;justify-content: center;align-items: center;margin-right: 0rpx;margin-left: 30rpx; }.msg_title_center {width: 100%;display: flex;flex-direction: row;justify-content: center; }.msg_txt {font-size: 36rpx;height: 80rpx;width: 160rpx;margin-bottom: 20rpx;align-items: center;color: #fff;display: flex;justify-content: center; }/* 返回 */ .logout {width: 100rpx;height: 90rpx;display: flex;flex-direction: column;justify-content: center;align-items: center;margin-right: 20rpx;margin-left: 30rpx; }.logout_ic {height: 44rpx;width: 48rpx;margin-right: 2rpx; }.logout_txt {font-size: 24rpx;height: 40rpx;width: 60rpx;margin-bottom: 10rpx;align-items: flex-start;color: #fff;display: flex;justify-content: flex-start; }/* 搜索标题 */ /* 头部搜索 *//* body */ .scbg {background-color: #f0f0f0;width: 100%;height: calc(100vh - 180rpx);left: 0rpx;right: 0rpx;top: 0rpx;padding-bottom: 120rpx; }/* item条目布局 */ /* item父布局 */ .item_parent {margin-top: 20rpx; }.date {display: flex;align-items: center;justify-content: center;color: #999999;font-size: 28rpx;margin-bottom: 10rpx; }/* item盒子 */ .box_item {background-color: #fff;margin-left: 25rpx;margin-right: 25rpx;border-radius: 20rpx;flex-direction: column;width: 100%;height: 160rpx;display: flex; }/* item模块时间 *//* item上部分布局 */ .head_layout {height: 60rpx;border-radius: 20rpx;margin-right: 20rpx;display: flex;flex-direction: row;justify-content: space-between;align-items: center; }/* 标题 */ .head_title {width: 160rpx;display: flex;align-items: center;justify-content: flex-start;margin-left: 20rpx;color: #06c8ad;font-size: 28rpx;font-weight: 800; }/* item下部份分布局 */ .body_layout {background-color: #fff;padding-bottom: 20rpx;border-radius: 20rpx;margin-bottom: 16rpx;align-items: center;margin-left: 20rpx;margin-top: 10rpx;margin-right: 10rpx;font-size: 28rpx;color: #999999; }/* 滑动删除移动模块 */ .moveArea {display: flex;flex-direction: row;width: calc(100% 120rpx);justify-content: center;left: -120rpx;height: 188rpx; }/* 滑动删除模块 */ .movableView {display: flex;flex-direction: row;width: calc(100% - 120rpx);z-index: 1001;left: 120rpx; }/* item删除 */ .itemDelet {position: absolute;right: 30rpx;line-height: 160rpx;background-color: #62c8ec;margin-top: 0rpx;margin-right: 6rpx;border-bottom-right-radius: 20rpx;border-top-right-radius: 20rpx;width: 120rpx;text-align: right;padding-right: 20rpx;color: #fff; }
http://www.lebaoying.cn/news/30240.html

相关文章:

  • 有没有专门做渔具的网站秦皇岛网站开发公司
  • 做旅行义工网站蚁做原型的网站
  • 宁波网站建设公司地址网络营销方式有哪些
  • 织梦网站会员中心模板下载做网站公司凡科
  • 宁国市网站建设巴中微信网站建设
  • 网站开发资质网络服务商怎么联系
  • 优秀网站建设多少钱专业宣传片制作公司
  • 文登住房和建设局网站做钓鱼网站会被抓吗
  • 免费的企业网站建设想在网上卖货需要怎么做
  • 冠县住房和城乡建设局网站网站建设颜色注意事项
  • 帝国做网站涿州网站开发
  • 广州网站建设公司怎么挑选wordpress theme check
  • 免费企业网站系统男女做羞羞事动画网站免费
  • 网站栏目策划 有思想的新闻前端静态网站开发
  • 网站商城与网站区别吗建设生鲜网站价格表
  • 网站域名在哪买wordpress的字体颜色如何更改
  • 网站做网站在线设计平台的设计理念
  • dede自动一键更新网站网站做代理需要空间是多少钱
  • 做外贸网站好还是内贸网站好不同类型网站栏目设置区别
  • EDI许可证需要的网站怎么做做网站好的网站建设公司
  • 做网站开发电脑配置新手怎样做网站
  • 北京网站建设外包公司哪家好网站后台怎么做下载链接
  • 兰州网站外包产品怎么做市场推广
  • 辽宁省住房和建设厅网站wordpress 查询参数
  • 网站建设 视频教程营销型企业网站建设体会
  • 产品销售网站模块如何设计wordpress 幻灯片
  • php网站做退出的代码网站建设和网页设计是不是一样
  • 深圳市甘泉建设监理有限公司网站短网址生成网站源码
  • 威联通怎么建设网站临沂网站优化
  • 网站建设qq群网站建设要用H5的缺点