- 博客(13)
- 资源 (24)
- 收藏
- 关注
转载 C#中调用C(C++)类的DLL
在C#中调用C(C++)类的DLL的时候,有时候C的接口函数包含很多参数,而且有的时候这些参数有可能是个结构体,而且有可能是结构体指针,那么在C#到底该如何安全的调用这样的DLL接口函数呢?本文将详细介绍如何调用各种参数的方法。
2024-08-15 06:15:04
451
原创 CSS设置输入框默认文字颜色(webkit-input-placeholder等)
在html5中input,textarea等元素新添加了placeholder的属性,我们可以通过css设置placeholder的样式,对于ie,firefox,以及webkit内核的浏览器需要使用不同的样式写法。如下测试代码: type="text/css"> #myInput::-webkit-input-placeholder { color:
2017-08-29 13:47:58
15928
原创 浏览器兼容
1、单独对浏览器写样式:火狐浏览器:@-moz-document url-prefix() { .selector { property: value; } }谷歌浏览器:@media screen and (-webkit-min-device-pixel-ratio:0){ p{color:#fff;}/*样式*/ }ie专用: height:100px\9;i
2017-08-29 13:47:18
298
原创 css3
修改第二个元素样式: li:nth-child(2){ transform:rotate(10deg); } 修改第三个、第六个。。元素样式:li:nth-child(3n){ transform:rotate(-25deg);}背景径向渐变: background: radial-gradient(#2a899d, #0d3553, #132c43);背景线性渐变:backgroun
2017-08-29 13:46:49
424
转载 前端页面适配的rem换算
为什么要使用rem之前有些适配做法,是通过js动态计算viewport的缩放值(initial-scale)。例如以屏幕320像素为基准,设置1,那屏幕375像素就是375/320=1.18以此类推。但直接这样强制页面缩放过于粗暴,会导致页面图片文字失真模糊。Px是相对固定单位,字号大小直接被定死,所以用户无法根据自己设置的浏览器字号而缩放,em和rem虽然
2017-08-29 13:44:10
446
转载 CSS3 Transform
在CSS3中transform主要包括以下几种:旋转rotate、扭曲skew、缩放scale和移动translate以及矩阵变形matrix。下面我们一起来看看CSS3中transform的旋转rotate、扭曲skew、缩放scale和移动translate一、旋转rotatetransform:rotate(30deg):二、移动translate1、tr
2016-04-28 15:23:30
300
翻译 CSS3 calc()的运用
知道总宽度是100%,在这个基础上减去boder的宽度(5px * 2 = 10px),在减去padding的宽度(10px * 2 = 20px),即"100% - (10px + 5px) * 2 = 30px" ,最终得到的值就是div.box的width值:div class="demo"> div class="box">div>div> .demo {
2016-04-28 11:46:13
351
转载 contentSize、contentInset和contentOffset
contentSize、contentInset和contentOffset 是 scrollView三个基本的属性。contentSize: The size of the content view. 其实就是scrollview可以滚动的区域,比如frame = (0 ,0 ,320 ,480) contentSize = (320 ,960),代表你的scrollview可以上下滚动
2015-05-17 22:35:20
220
转载 UIRefreshControl:点击按钮实现下拉刷新
新浪微博的app中有一个功能,就是点击一个tabBarItem时,表格会自动下拉刷新,不需要人手工操作。以前写过新浪微博app的Demo,但当时一直没想明白以上功能是怎么做到的,现在找到方法了,很简单,就是在点击按钮后,设置Table View的contentOffset就可以了。首先是UIRefreshControl的初始化代码:- (void)viewD
2015-05-17 22:06:16
564
转载 dundas chart legend checkbox
原文地址:http://support.dundas.com/Dashboard3.Legend_Usage.ashxlements of a legend¶The figure below shows the main elements of a legend control. By default, the background of a legend is transpa
2014-03-16 10:13:59
561
转载 dundas legend checkbox
http://support.dundas.com/Dashboard3.Legend_Usage.ashxlements of a legend¶The figure below shows the main elements of a legend control. By default, the background of a legend is transparent, a
2014-03-16 10:11:22
750
转载 dundas chart
这个真是一个好东西可惜我不太会总结,摘录一片,希望有用:原文地址如下:http://www.cnblogs.com/wrz923/archive/2008/07/05/1236348.htmlusing System;using System.Data;using System.Configuration;using System.Collections
2014-03-12 21:18:40
596
jquery跟随鼠标移动的链接title提示
2014-08-02
JS右侧固定区块,可用做导航
2014-07-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人