会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
源代码
博客园
首页
联系
管理
上一页
1
2
3
4
5
6
···
11
下一页
2022年11月6日
手机网页:禁止手指滑动屏幕回弹
摘要: 环境是手机浏览网页 禁止手指滑动屏幕左右上下回弹:body{overflow:hidden;} 禁止左右回弹:body{overflow-x:hidden;} 禁止上下回弹:body{overflow-y:hidden;}
阅读全文
posted @ 2022-11-06 21:42 苦逼的猿人
阅读(110)
评论(0)
推荐(0)
2022年10月27日
背景图片模糊效果
摘要: <html> <head> <style> html, body { height: 100%; width: 100%; } body { background-image: url(1.jpg), linear-gradient(rgb(219, 166, 166), rgb(0, 0, 172
阅读全文
posted @ 2022-10-27 15:22 苦逼的猿人
阅读(140)
评论(0)
推荐(0)
图片瀑布流效果
摘要: body,div ,p{ padding:0px; margin:0px } #content { padding:0px; margin:0px auto;/* 左右居中 上下为0*/ width:80%;/*宽为80% */ } #content .note { column-gap:20px;
阅读全文
posted @ 2022-10-27 09:53 苦逼的猿人
阅读(34)
评论(0)
推荐(0)
2022年10月21日
Video样式自定义
摘要: <style> .js_video_box{width:300px;height:200px;background-color:#666;} .js_video{width: 100%;height:100%;background-size: cover;background-position: c
阅读全文
posted @ 2022-10-21 14:29 苦逼的猿人
阅读(243)
评论(0)
推荐(0)
jquery .play()报错is not a function
摘要: 报错原因:play()方法属于DOM对象方法,$('#audio')为jquery对象 解决办法:将jquery对象转换为DOM对象首先打印jquery对象$('#audio') 两种转换方式将一个jQuery对象转换成DOM对象:[index]和.get(index);(1)jQuery对象是一个
阅读全文
posted @ 2022-10-21 11:40 苦逼的猿人
阅读(426)
评论(0)
推荐(0)
2022年10月19日
FileStream读取本地文件到数据流中
摘要: using (FileStream fsRead = new FileStream(path_file_video, FileMode.OpenOrCreate, FileAccess.Read)) { }
阅读全文
posted @ 2022-10-19 21:27 苦逼的猿人
阅读(68)
评论(0)
推荐(0)
2022年10月17日
支持高并发的IIS Web服务器常用设置
摘要: 适用的IIS版本:IIS 7.0, IIS 7.5, IIS 8.0 适用的Windows版本:Windows Server 2008, Windows Server 2008 R2, Windows Server 2012 1、应用程序池(Application Pool)的设置: General
阅读全文
posted @ 2022-10-17 16:13 苦逼的猿人
阅读(749)
评论(0)
推荐(0)
2021年8月18日
WebBrowser点击页面的某个标签
摘要: var bb=webBrowser1.Document.GetElementById("tab-companyStaff"); bb.InvokeMember("click") '点击无效 bb.RaiseEvent("onclick") '点击无效 bb.InvokeMember("MouseDo
阅读全文
posted @ 2021-08-18 15:04 苦逼的猿人
阅读(179)
评论(0)
推荐(0)
C# winform中richTextBox中自动滚至底部
摘要: 垂直滚动条始终在RichTextBox的底部你需要设置HideSelection 为 false 并且用 AppendText来插入新数据例如richTextBox.AppendText("内容");让richTextBox2一直获取焦点则在促发事件的时候增加richTextBox2.Focus()
阅读全文
posted @ 2021-08-18 13:26 苦逼的猿人
阅读(1441)
评论(0)
推荐(0)
2021年8月16日
本地可以,发布到服务器报错:系统找不到指定的文件
摘要: 最近发现个深坑,本地可以,发布到服务器报错 系统找不到指定的文件,这是由于服务器 IIS 和本地 IIS 默认配置不一致引起的,解决方案如下 修改服务器 IIS 该网站的应用程序池配置项:【加载用户配置文件】 改为 True 即可
阅读全文
posted @ 2021-08-16 17:36 苦逼的猿人
阅读(414)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
11
下一页
公告