-
用jquery制作的下拉二级菜单
用jquery制作一款风格简洁的下拉二级菜单,是英文的,国外老外写的,带有动画渐变特效,整体觉得很不错,比较简约大方的风格,有点百度风格。里面同时还有与动态脚本ASP/PHP配合生成动态下拉菜单的例子,自己认真看一下吧。
- 2022-09-30 18:10:04下载
- 积分:1
-
线路微机保护的界面,用标准C写成的很好的欢迎大家共同学习,...
线路微机保护的界面,用标准C写成的很好的欢迎大家共同学习,
- 2022-08-10 19:05:35下载
- 积分:1
-
磁盘的最优存储问题! 计算最优存储时间是改进了一下,把时间降到nlogn!如果不改进的话是n的平方啊!...
磁盘的最优存储问题! 计算最优存储时间是改进了一下,把时间降到nlogn!如果不改进的话是n的平方啊!-the optimal disk storage problem! We calculate optimal storage time is to improve a bit down finite time! If no improvement is the square of n ah!
- 2022-11-07 16:00:04下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1
-
sdk下的俄罗斯方块 有游戏运行程序和源代码 并有详细的注解
sdk下的俄罗斯方块 有游戏运行程序和源代码 并有详细的注解-sdk the game Tetris is operational procedures and source code and a detailed explanation
- 2022-04-22 22:25:00下载
- 积分:1
-
超宽带无线通信(UWB)技术和应用发展PPT2
超宽带无线通信(UWB)技术和应用发展PPT2-Ultra-wideband wireless communications (UWB) technology and application development PPT2
- 2022-07-17 17:51:14下载
- 积分:1
-
基于VC++ 的网络聊天室代码(windows 网络通信编程)
基于VC++ 的网络聊天室代码(windows 网络通信编程)-VC++-based network of chat rooms
- 2022-12-01 13:45:02下载
- 积分:1
-
传感器网络吞吐量测试
for testing throughput of sensor network
- 2022-03-26 01:49:08下载
- 积分:1
-
本程序,是通过VB最为开发软件,能实现二进制,十进制,十六进制之间的转换和调用。可作为其他程序的一部分被调用,本人用VB编写遗传算法时用到其...
本程序,是通过VB最为开发软件,能实现二进制,十进制,十六进制之间的转换和调用。可作为其他程序的一部分被调用,本人用VB编写遗传算法时用到其-the procedure, VB is the most developed software to achieve binary, decimal, hexadecimal between conversion and call. As part of the other procedures to be called, I prepared with VB genetic algorithm used its
- 2022-08-13 01:22:40下载
- 积分:1
-
Learning when to do a graphics gadgets to simulate the 8 planets of the solar sy...
学习图形学时做的一个小玩意,模拟了太阳系8大行星的公转与自转,有兴趣的可以-Learning when to do a graphics gadgets to simulate the 8 planets of the solar system revolution and rotation, are interested in can
- 2022-08-14 09:12:12下载
- 积分:1