原文地址 https://blog.csdn.net/tsvico/article/details/94721560 本次设计是一个简易的局域网聊天,功能设计主要分为群聊和私聊两部分,每部分都支持基础聊天以及文件传输功能,私聊页面相较于主页面支持更多功能,例如表情发送、窗口抖动,语音聊天等。参考了《 ...
分类:
其他好文 时间:
2020-01-31 01:00:51
阅读次数:
80
function showMsg(msg, icon){ layer.msg(msg, { //1:正确;2:错误;3:询问;4:锁定;5:失败;6:成功;7:警告;16:加载 icon : icon, offset : 0, shift : 6, //抖动效果 time : 3000 }); } ... ...
分类:
其他好文 时间:
2019-06-25 15:05:46
阅读次数:
376
由于html加载最后才会加载图片,所以如果没有提前设置高度的话,就会出现窗口抖动,用户体验很不好. 如果固定死高度的话,又不能于宽等比例缩放。 解决办法: 已知原图的宽高比例 例如:此图宽500,高321,高/宽为64.2% 方法一: 不考虑兼容性(即手机端开发): 直接设置height: 64.2 ...
分类:
其他好文 时间:
2018-08-05 22:34:34
阅读次数:
157
#include "stdafx.h" #include #include int main() { int shake_time = 50; //休眠的时间,为5毫秒 int shake_distance = 10; //移动了10像素 RECT rect; //RECT是一个矩形结构体,相当于保... ...
分类:
编程语言 时间:
2018-04-21 21:21:08
阅读次数:
186
相信在大家平常开发页面的时候,UI给你的PSD总是各种奇葩字体,PM的特殊需求,2M的背景图片,懒加载窗口抖动,以及烦心的代理网速来加载CSS。 有种拿刀先去砍UI再砍PM的冲动(开个小玩笑)。 网速快的人可能感觉不出来,但是有些网速慢的就不一样了。CSS可能托管的网站有问题,请求半分钟也是有可能的 ...
分类:
Web程序 时间:
2018-01-03 19:38:45
阅读次数:
191
详细学习网址 http://www.layui.com/doc/modules/layer.html#use 、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、 //使用方法 后台方法 --》目的是出现异常或成功向前台传消息 Map<String,String> msgMap ...
分类:
其他好文 时间:
2017-12-29 15:11:30
阅读次数:
128
[cpp] view plain copy [cpp] view plain copy 参考:http://www.rupeng.com/forum/thread-6423-1-1.html http://blog.csdn.net/analogous_love/article/details/47 ...
在res/anim下创建cyle.xml 在res/anim下创建myanim.xml mian.xml 效果: ...
分类:
其他好文 时间:
2017-03-01 14:05:37
阅读次数:
132
publicvoid onClick(View v){ Animation shake =AnimationUtils.loadAnimation(this, R.anim.shake); findViewById(R.id.pw).startAnimation(shake); } anim\sha ...
分类:
其他好文 时间:
2016-11-13 11:18:28
阅读次数:
158
<html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Document</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style>* ...
分类:
其他好文 时间:
2016-07-11 20:59:26
阅读次数:
181