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

织梦php网站模板修改如何做正版小说网站

织梦php网站模板修改,如何做正版小说网站,怎么自己做网站qq,网页设计 网站维护1. 需求效果图 2. 方案 为实现这样的效果#xff0c;首先要解决两个问题#xff1a; 2.1.点击输入框弹出软键盘后#xff0c;将已有的少许聊天内容弹出#xff0c;导致看不到的问题 点击输入框弹出软键盘后#xff0c;将已有的少许聊天内容弹出#xff0c;导致看不到的问…1. 需求效果图 2. 方案 为实现这样的效果首先要解决两个问题 2.1.点击输入框弹出软键盘后将已有的少许聊天内容弹出导致看不到的问题 点击输入框弹出软键盘后将已有的少许聊天内容弹出导致看不到的问题。   1首先我们需要将input的自动向上推给关掉这里有个坑 在input组件中添加adjust-position‘{{false}}’而不是adjust-position‘false’。   这么做虽然不再向上推但却导致了软键盘弹起时会遮挡屏幕下部分的消息。   2如何解决软键盘弹起时会遮挡屏幕下部分的消息 当软键盘弹起时将scroll-view的高度缩短至软键盘遮挡不到的屏幕上方部分当软键盘收起时再将scroll-view的高度还原这样解决了遮挡问题。   提示   input中的bindfocusfocus’可获取软键盘高度并监听软键盘弹起bindblurblur’可监听软键盘收起var windowHeight wx.getSystemInfoSync().windowHeight;可获得屏幕高度。   scrollHeight滚动条高度 windowHeight屏幕高度 - 软键盘高度; 最后将input组件放在软键盘上面就完成了。 2.2.键盘弹出或收起时聊天消息没有自动滚到最底部 首先解决第二个问题自动滚动到最底部这很简单这里提供三种方法推荐第三种   1计算每条消息的最大高度设置scroll-top(单条msg最大高度 * msg条数)px。   2用 将展示msg的目标scroll-view包裹   通过js获取到该view的实际高度 var that this; var query wx.createSelectorQuery(); query.select(.scrollMsg).boundingClientRect(function(rect) {that.setData({scrollTop: rect.heightpx;}); }).exec();3推荐将所有msg都编号如msg-0msg-1msg-2… 直接锁定最后一条msg滚动到那里。   在scroll-view中添加scroll-into-view‘{{toView}}’   在wx:for后面添加wx:for-index“index”   在每个msg布局中添加id‘msg-{{index}}’ this.setData({toView: msg- (msgList.length - 1) })3. 代码 3.1.gridGroup.wxml view classpage-layoutview classpage-body idx_chatview wx:key{{index}} wx:for{{chatList}}view classchat-item-bodyview classchat-item-time{{item.time}}/viewview wx:key{{index}} wx:if{{item.type 0}} classchat-item-layout chat-leftview classchat-inner-layoutview classchat-item-name{{item.name}}/viewview classchat-item-msg-layoutimage classchat-item-photo bindtapscanClick src{{item.photoUrl}} modeaspectFit/imageview classchat-inner-msg-left{{item.msg}}/view/view/view/view/viewview wx:key{{index}} wx:if{{item.type 1}} classchat-item-layout chat-rightview classchat-inner-layoutview classchat-item-name-right{{item.name}}/viewview classchat-item-msg-layoutview classchat-inner-msg-right{{item.msg}} /viewimage classchat-item-photo bindtapscanClick src{{item.photoUrl}} modeaspectFit/image/view/view/view/view/viewview classsubmit-layoutinput classsubmit-input placeholder点击输入开始聊天吧 value{{inputTemp}} bindinputbindKeyInput /view classsubmit-submit typesubmit sizemini bindtapsubmitTo发送/view/view /view3.2.gridGroup.wxss .page-layout {width: 100%;height: 100%;box-sizing: border-box; }.page-body {width: 100%;display: flex;flex-direction: column;padding-bottom: 56px; }.chat-item-body {display: flex;flex-direction: column;margin-top: 20rpx; }.chat-item-time {width: 100vw;text-align: center;font-size: 28rpx;color: #ccc;border-radius: 10rpx;margin-top: 40rpx; }.chat-item-layout {display: block;max-width: 82%;margin: 1rpx 5rpx;box-sizing: border-box;padding: 0 1rpx; }.chat-right {float: right; }.chat-left {float: left; }.chat-inner-layout {display: flex;flex-direction: column; }.chat-item-photo {width: 70rpx;height: 70rpx;min-width: 70rpx;min-height: 70rpx;border-radius: 50%; }.chat-item-msg-layout {display: flex;flex-direction: row; }.chat-item-name {display: flex;flex-direction: row;align-items: center;font-size: 28rpx;color: #999;border-radius: 10rpx;margin: 5rpx 0 0 80rpx; }.chat-item-name-right {display: flex;flex-direction: row;align-items: center;font-size: 28rpx;color: #999;border-radius: 10rpx;margin: 5rpx 0 0 5rpx; }.chat-inner-msg-left {display: inline-block;flex-direction: row;align-items: center;color: #000;font-size: 30rpx;border-radius: 10rpx;background: white;padding: 15rpx 5rpx 15rpx 15rpx;margin-left: 12rpx; }.chat-inner-msg-right {display: inline-block;color: #000;font-size: 30rpx;border-radius: 10rpx;background: #87EE5F;padding: 15rpx 5rpx 15rpx 15rpx;margin-right: 12rpx; }.submit-layout {position: absolute;bottom: 0;width: 100%;background: #eee;flex-direction: row; }.submit-layout {width: 100%;position: fixed;bottom: 0;border-top: 1px solid #ddd;padding: 10rpx 0;display: flex;flex-direction: row;align-items: center; }.submit-input {flex: 1;background: #fff;margin: 5rpx 10rpx;border-radius: 5rpx;padding: 15rpx 20rpx;color: #333;font-size: 30rpx; }.submit-submit {background-color: #13c25f;color: #333;font-weight: 700;font-size: 30rpx;border-radius: 10rpx;padding: 18rpx 30rpx;margin-right: 10rpx; }3.3.gridGroup.js import tinyCommunityJson from ../../public/json/tinyCommunityJson; Page({data: {inputValue: ,chatList: tinyCommunityJson.data.rows,},onLoad: function (options) {var title options.title// 设置标题wx.setNavigationBarTitle({title: title,})//滚动到页面底部that.pageScrollToBottom()},/*** 输入监听*/bindKeyInput: function (e) {this.setData({inputValue: e.detail.value})},/*** 发送*/submitTo: function (e) {var that this;var inputValue that.data.inputValueif (!inputValue) {wx.showToast({title: 请输入聊天内容,icon: none})return}this.setData({inputTemp: })var chatObj {}chatObj.type 1chatObj.name chatObj.msg inputValuechatObj.time that.getCurTime()chatObj.photoUrl https://zhsq/icon_chat_photo_three.jpgvar chatList that.data.chatListchatList.push(chatObj);that.setData({chatList: chatList})//滚动到页面底部that.pageScrollToBottom()},/*** 获取当前时间*/getCurTime() {var date new Date()var y date.getFullYear();var m date.getMonth() 1;m m 10 ? (0 m) : m;var d date.getDate();d d 10 ? (0 d) : d;var h date.getHours();h h 10 ? (0 h) : h;var minute date.getMinutes();minute minute 10 ? (0 minute) : minute;var second date.getSeconds();second second 10 ? (0 second) : second;return y - m - d h : minute : second;},/*** 滚动到页面底部*/pageScrollToBottom: function () {let that this;wx.createSelectorQuery().select(#x_chat).boundingClientRect(function (rect) {let top rect.height * that.data.chatList.length;wx.pageScrollTo({scrollTop: top,duration: 100})}).exec()}, })3.4.tinyCommunityJson.js const data {rows: [{type: 0,name: 群主,msg: 大家好欢迎进入微社区群如有问题可在群里聊天询问,time: 2024-01-26 13:43:12,photoUrl: https://zhsq/icon_chat_photo_two.jpg,},{type: 0,name: 小助手,msg: 2024微报事、微呼应活动正在进行中希望大家踊跃参加。,time: 2024-01-26 13:43:15,photoUrl: https://zhsq/icon_service.png,},{type: 1,name: ,msg: 已参加微呼应活动,time: 2024-01-26 13:56:10,photoUrl: https://zhsq/icon_chat_photo_three.jpg,},{type: 0,name: 第五网格员,msg: 已参加微报事活动,time: 2024-01-26 13:59:12,photoUrl: https://zhsq/icon_chat_photo_one.jpg,}, ], }; module.exports {data: data, }4. 优化 聊天框三角形的制作和使用 4.1. gridChat.wxml view!-- 右侧布局 --view classright-layoutview classright-msg我是右侧布局我是右侧布局我是右侧布局我是右侧布局我是右侧布局/viewview classright-arrow-layoutimage classright-arrow-img srchttps://zhsq/icon_arrow_right_green.png modewidthFix/image/viewimage classright-arrow-photo srchttps://zhsq/icon_chat_photo_one.jpg modeaspectFill/image/view!-- 左侧布局 --view classleft-layoutimage classleft-arrow-photo srchttps://zhsq/icon_chat_photo_two.jpg modeaspectFill/imageview classleft-arrow-layoutimage classleft-arrow-img srchttps://zhsq/icon_arrow_left_white.png modewidthFix/image/viewview classleft-msg我是左侧布局/view/view /view4.2. gridChat.wxss page {background-color: #eee; } /* 左侧布局 */ .left-layout {display: flex;justify-content: flex-start;padding: 20rpx 60rpx 2vw 2vw; }.left-arrow-photo {width: 60rpx;height: 60rpx;min-width: 60rpx;min-height:60rpx ;border-radius: 50%;margin-top: 5rpx; }.left-msg {font-size: 32rpx;color: #444;line-height: 45rpx;padding: 10rpx 20rpx 10rpx 5rpx;background-color: white;margin-left: -12rpx;border-radius: 10rpx;z-index: 10; }.left-arrow-layout {width: 35rpx;height: 65rpx;display: flex;align-items: center;z-index: 9; }.left-arrow-img {width: 35rpx; }/* 右侧布局 */ .right-layout {display: flex;justify-content: flex-end;padding: 20rpx 2vw 2vw 15vw; } .right-arrow-photo {width: 60rpx;height: 60rpx;min-width: 60rpx;min-height:60rpx ;border-radius: 50%;margin-top: 5rpx; } .right-msg {font-size: 32rpx;color: #444;line-height: 45rpx;padding: 10rpx 5rpx 10rpx 20rpx;background-color: #96EB6A;margin-right: -12rpx;border-radius: 10rpx;z-index: 10; }.right-arrow-layout {width: 35rpx;height: 65rpx;margin-right: 5rpx;display: flex;align-items: center;z-index: 9; }.right-arrow-img {width: 35rpx; }
http://www.w-s-a.com/news/867811/

相关文章:

  • 外发加工是否有专门的网站wordpress主页 摘要
  • 企业网站优化系统浙江建设信息港证书查询
  • 很多年前的51网站如何做跨境电商需要哪些条件
  • 网站建设中 请稍后访问互联网营销设计
  • 软文网站名称用户浏览网站的方式
  • 大兴模版网站搭建哪家好网站建设与管理管理课程
  • 四川成都网站制作微信广告平台推广
  • 网站价格网页制作网站开发实训步骤
  • cms 导航网站鹤壁做网站价格
  • 微信营销软件免费版郑州关键词优化费用
  • 邢台专业做网站哪家好临沂网站建设中企动力
  • 建设网站是主营成本吗wordpress 后台
  • 猎头可以做单的网站企业网站建设
  • 建小程序需要网站吗在putty上怎样安装wordpress
  • 天津智能网站建设找哪家WordPress相册插件pro
  • 电脑网站页面怎么调大小济宁网站建设软件开发
  • 亿玛酷网站建设广州增城区最新消息
  • 企业网站视频栏目建设方案中企动力网站模板
  • 网站页面策划国外注册域名的网站
  • 百中搜如何做网站排名网站维护一年一般多少钱
  • 镇江地区做网站的公司wordpress说说加分类
  • 深圳高端网站设计免费的关键词优化软件
  • 视频网站公司沈阳网站建设服务
  • 网站全屏代码做网站必须用对方服务器
  • 网站速度慢wordpressssl正式申请后wordpress
  • 那个网站做玉石最专业西瓜创客少儿编程加盟
  • 备案时的网站建设方案书免费软件库
  • 惠州外贸网站建设网站模板 兼容ie8
  • 南京淄博网站建设方案php网站开发实训感想
  • 网站设计的含义只做恐怖片的网站