SSD9.CHM SSD9课本
SSD9 SSD9.chm SSD9课本
Visual Assist X VS代码提示插件
Visual Assist X是一款非常好的Microsoft Visual Studio插件,它可以完全集成到您的Microsoft开发环境中,升级了您的IDE,在不改变编程习惯的同时就可以感受到Visual Assist X为您带来的好处。软件支持Microsoft Visual Studio 2003-2012,C/C++,C#,ASP,VisualBasic,Java和HTML等语言,能自动识别各种关键字、系统函数、成员变量、自动给出输入提示、自动更正大小写错误、自动标示错误等。使用Visual Assist X有助于提高开发过程的自动化和开发效率
Node.js开发指南
Node.js开发指南 人民邮电出版社 2012
Flash_CS4中文版经典教程
Flash_CS4中文版经典教程,
数据结构c++陈慧南全书源代码
数据结构c++陈慧南全书源代码
数据结构-国际软件学院-期中测试2013-李莉
数据结构-国际软件学院-期中测试2013-李莉
C#试题-大部分为2013年考题
大部分为国际软件学院2013年考题。老师怎么出题的--你懂的
导航滚动监听
这不是你想要的,除非你知道导航滚动监听是什么
菜单悬停顶部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<style type="text/css">
*{
padding: 0px;
margin: 0px;
}
body{
height: 2500px;
}
#first{
position:fixed;
top:300px;
left:50%;
margin-left: -250px;
border: 2px solid red;
background-color: red;
width: 500px;
height: 100px;
}
</style>
<script>
function first() {
scrollTop = document.documentElement.scrollTop+document.body.scrollTop;
height = document.getElementById("first").offsetTop;
alert(scrollTop+" "+height);
}
function second(){
var top = 300;
var jia = 5;
scrollTop = document.body.scrollTop;
if(scrollTop<top){
document.getElementById("first").style.top = top + jia -scrollTop;
}else if(scrollTop>top){
document.getElementById("first").style.top = jia;
}
}
</script>
</head>
<body onscroll="second()">
<div id="first" onclick="first()">
</div>
</body>
</html>
用户界面设计:SSD4.pdf
用户界面设计 SSD4教材 pdf
国软2012年UNIX期末考试试题
国软2012年UNIX期末考试试题
网页中鼠标样式标签
鼠标样式显示:
手型style="cursor:hand">
手型style="cursor:pointer"
十字型style="cursor:crosshair"
文本style="cursor:text"
你好等待style="cursor:wait"
你好默认style="cursor:default"
问号style="cursor:help"
向右的箭头style="cursor:e-resize"
向右上方的箭头style="cursor:ne-resize"
你好向上的箭头style="cursor:n-resize">
你好向左上的箭头style="cursor:nw-resize">
向左的箭关style="cursor:w-resize">
向左下的箭关style="cursor:sw-resize"
向下的箭头style="cursor:s-resize"
向右下方的箭头style="cursor:se-resize"
自动style="cursor:auto"