登录
首页 » 其他 » 网页常用的Flash焦点图代码

网页常用的Flash焦点图代码

于 2022-07-10 发布 文件大小:312.19 kB
0 40
下载积分: 2 下载次数: 1

代码说明:

一个较常见的Flash焦点图代码,网页有很多类似的图片轮显效果,本款效果内核是基于SWF文件,配合JS共同实现,示例文件也是效果演示文件,下载后请参见index.html中的方法进行调用。横长型的Flash焦点图特效,鼠标放在图片上时,会显示左右控制切换的按钮。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 一个含窗体分栏和树控菜单的软件界面
    一个含窗体分栏和树控菜单的软件界面源码,应该是一个窗体设计布局方面的制作实例吧,在窗口中应用了分栏显示技术,以及树形菜单的应用技术,并且还包括有TAB分栏切换的功能,这些虽然很小的功能,但在窗口中的应用是十分实用的,值得学习哦。
    2022-02-22 00:43:49下载
    积分:1
  • VC++猫捉老鼠捉迷藏游戏
    VC++猫捉老鼠捉迷藏游戏,带音效,每个老鼠,不管是猫的侧身还是后身,只要一碰猫就算是被猫吃看.只需将算法改为如下,便可实现只有接近嘴巴时才被吃掉.   If(在老鼠接猫时,再判断老鼠接的是猫的嘴巴,){吃掉}   即是:   若老鼠在猫的左边接近猫,且猫的方向需向右(m_nCatDirection==2)才能吃掉老鼠.   若老鼠在猫的右边接近猫,且猫的方向需向左(m_nCatDirection==3)才能吃掉老鼠.   若老鼠在猫的上边接近猫,且猫的方向需向下(m_nCatDirection==1)才能吃掉老鼠.   若老鼠在猫的下边接近猫,且猫的方向需向上(m_nCatDirection==0)才能吃掉老鼠.   以老鼠在猫的左边接近猫为例
    2022-03-30 15:02:59下载
    积分:1
  • 普通调幅电路am
    普通调幅电路am-Ordinary amplitude modulation circuit am
    2023-05-01 12:15:02下载
    积分:1
  • 二叉数c++算法实现
    二叉数c++算法实现-two forks few c Algorithm
    2022-06-02 17:21:59下载
    积分:1
  • 1、 秉承EIP
    1、 秉承EIP-CDIO的教学理念,以实验设计的方式,通过篮球计时器的设计,运用Protel软件进行绘制原理图和PCB图,增进对电子产品的生产制作过程的了解,提高对电子产品的制作工艺的认识.-1, our EIP-CDIO teaching philosophy, a way to experimental design, through basketball timer design, the use of mapping software Protel schematic and PCB plans to enhance the production of electronic manufacturing process understanding, improve on electronic products understanding of the production process.
    2023-05-20 23:20:03下载
    积分:1
  • ISOIEC
    ISOIEC-15444-12-2004 标准-ISOIEC- 15444-12-2004 standard
    2022-07-08 22:01:49下载
    积分:1
  • jQuery平移动画的实现及代码例子
    jQuery平移动画的实现及代码例子,点击测试文字,方块就开始平移了,平移过程中还有形变动画,按照一定的轨迹移动,兼有淡入淡出渐变,总之里面的亮点还是比较多,考察的jquery动画编写水平也是很多的,虽然看上去是很简单的例子。
    2022-08-24 15:35:58下载
    积分:1
  • Fourth National Graduate Electronic Design Contest T test on digital circuit des...
    第四届全国研究生电子设计大赛数字电路设计T测试成绩很好
    2022-02-13 22:52:37下载
    积分:1
  • ESRI形状文件读/写的源代码。形状是一个主要的地理信息系统文件格式,第…
    ESRI SHAPE文件读/写源代码。SHAPE是GIS中的重要文件格式,本代码对于研究SHAPE文件格式,实现独立代码读/写SHAPE而言,将非常轻松。建议首先阅读SHAPE文件格式白皮书。-ESRI SHAPE document read/write source code. SHAPE is a major GIS file format, the code for research SHAPE file format, achieve independent code reading/writing SHAPE, will be very relaxed. SHAPE proposal was first read the White Paper document format.
    2022-01-25 23:10:02下载
    积分:1
  • 本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小...
    本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide and conquer to solve the problem closest point. Prior to use O (nlogn) time to sort the x coordinate so that all points are based on x coordinates from small to large sorted (x coordinates with the same y coordinates of the small, the top), and then remove the standard is less than n/2 the set of points belonging to the left PL, remove the standard is greater than n/2 set of points belonging to the right of PR, that is to use O (1) time can be the problem size n divided into two size n/2, the same type The sub-problems. Segmentation can be used after completion of sub-rule method, respectively, find the PL and PR in the last points and eventually through the recursion.
    2022-01-25 16:01:13下载
    积分:1
  • 696524资源总数
  • 103939会员总数
  • 12今日下载