阅读更多

5顶
1踩

Web前端

原创新闻 jCapSlide:创建图片文字滑动效果的jQuery插件

2009-11-25 17:47 by 副主编 zly06 评论(1) 有6474人浏览

jCapSlide是一个不错的在图片上添加图片说明文字滑动效果的jQuery插件。

当你的鼠标滑动到图片上,会有更详细的字幕显示,并且图片上会覆盖一层有色的透明层。这些效果都可以自己设置。


查看demo:http://tympanus.net/jCapSlide/

调用此插件:
$(elementID).capslide()

此插件的属性:
caption_color
caption_bgcolor
overlay_bgcolor
border
showcaption

 

下载jCapSlide:http://tympanus.net/jCapSlide/jCapSlide.zip

  • 大小: 46 KB
5
1
评论 共 1 条 请登录后发表评论
1 楼 vincentwu001 2009-11-27 12:19
引用

    [*]
[url][/url]

    [*]
引用
[u][/u]

    [*]

    [*]
[url][/url]
[color=darkred][/color][align=left][/align]

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • Iczelion的Win32汇编教程.rar TXT文本

    Iczelion的Win32汇编教程.rar TXT文本 适合囧魄的人用的 手机 MP3上能看 效果差点喽

  • 客户寄存器结构

    客户寄存器结构我们将学习本教程中另外一个重要的结构,叫客户寄存器结构。在本文中,V86指虚拟8086模式。在这里下载例子程序理论VxDs与正常的win32/win16/DOS应用程序有很大不同。大多数情况下,当其他应用程序正常工作时,它们是休眠的。它们象一个监管者一样工作,其作用是监视ring-3应用程序并在其出错时改正它们。下面是其工作时的典型的情况:1、中断发生时2、V

  • 请求执行时间段与Shell函数

    请求执行时间段与Shell函数下载例子程序理论:请求执行时间段通常被简称为"appy time"。是指当系统VM稳定到充许VxDs和ring-3级别的应用软件(特别是16-bit的应用软件)交互时的时间段。例如,在一个特定时间段,VxDs能加载并调用在16-bit Dlls中的函数。这个appy time在Windows 3.x中是无效的。在Windows3.x,一个VxD能包

  • Iczelion 的 Win32Asm VxD 汇编教程 (三) (转)

    Iczelion 的 Win32Asm VxD 汇编教程 (三) (转)[@more@] 虚拟设备驱动程序结构现在大家对vmm和vxd有了一定的了解,接下来我们来看一看如何编写vxd代码。首先,你必须具备windows 95/...

  • Iczelion教程系列

    Win32 programs run in protected mode which is available since 80286. But 80286 is now history. So we only have to concern ourselves with 80386 and its descendants. Windows runs each Win32 program in separated virtual space. That means each Win32 program will have its own 4 GB address space. However, this doesn't mean every win32 program has 4GB of physical memory, only that the program can address any address in that range. Windows will do anything necessary to make the memory the program references valid. Of course, the program must adhere to the rules set by Windows, else it will cause the dreaded General Protection Fault. Each program is alone in its address space. This is in contrast to the situation in Win16. All Win16 programs can *see* each other. Not so under Win32. This feature helps reduce the chance of one program writing over other program's code/data. Memory model is also drastically different from the old days of the 16-bit world. Under Win32, we need not be concerned with memory model or segments anymore! There's only one memory model: Flat memory model. There's no more 64K segments. The memory is a large continuous space of 4 GB. That also means you don't have to play with segment registers. You can use any segment register to address any point in the memory space. That's a GREAT help to programmers. This is what makes Win32 assembly programming as easy as C. When you program under Win32, you must know some important rules. One such rule is that, Windows uses esi, edi, ebp and ebx internally and it doesn't expect the values in those registers to change. So remember this rule first: if you use any of those four registers in your callback function, don't ever forget to restore them before returning control to Windows. A callback function is your own function which is called by Windows. The obvious example is the windows procedure. This doesn't mean that you cannot use those four registers, you can. Just be sure to restore them back before passing control back to Windows.

  • Windows 汇编语言编程指南

    作者:Jeff Huang. 译者:jhkdiy 译期:2006-6-11 邮箱:jhkdiy_gzb@21cn.net 潜水论坛:www.20cn.net 源教程版本:1.02 -2003年 译注:自己还是第一次翻译16页的英文教程。全部翻译完了,给我的感觉就是这篇文章是为已有汇编基础但从未接触过Windows汇编编程的读者写的,虽然对我来说这些内容很简单,但也觉得说的很详细了,好过国内许多三言两语的所谓菜鸟教程;但如果读者想全面学习Win32汇编编程的话还是非Iczelion的Win32汇编教程莫属,网上到处都有中文和原文下载。虽然自己不敢说百分百明白原文,但也有98了,剩下的两点留给各位读者给我反馈,英文好的完全可以阅读源文,在此就不多说了,继续看下去吧。 压缩文件里包含原教程和译文教程。

  • Iczelion 的 Win32Asm VxD 汇编教程 (一) (转)

    Iczelion 的 Win32Asm VxD 汇编教程 (一) (转)[@more@] ...

  • 五个“时髦”技术被判死刑

     GenomeWeb上面引用一个著名科学家的博客讲现在还比较时髦的生物技术路线中,有五个可能在最近几年内渐渐退出历史舞台。其中首位的就是GWAS.我前段时间也写过一篇文章表达GWAS局限性。 这五个技术路线有:1. Genome-Wide Association Studies (GWAS) studies based on single nucleotide pol

  • iczelion tut11 (转)

    iczelion tut11 (转)[@more@]Tutorial 11: More about Dialog Box We will learn more about dialog box in this tutori...

  • iczelion tut34

    Tutorial 34: RichEdit Control: More Text OperationsYoull learn more about text operations under RichEdit control. Specifically, youll know how to search for/replace text, jumping to specific line

  • 数学建模拟合与插值.ppt

    数学建模拟合与插值.ppt

  • [net毕业设计]ASP.NET教育报表管理系统-权限管理模块(源代码+论文).zip

    【项目资源】:包含前端、后端、移动开发、操作系统、人工智能、物联网、信息化管理、数据库、硬件开发、大数据、课程资源、音视频、网站开发等各种技术项目的源码。包括STM32、ESP8266、PHP、QT、Linux、iOS、C++、Java、python、web、C#、EDA、proteus、RTOS等项目的源码。【项目质量】:所有源码都经过严格测试,可以直接运行。功能在确认正常工作后才上传。【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。【附加价值】:项目具有较高的学习借鉴价值,也可直接拿来修改复刻。对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。【沟通交流】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。鼓励下载和使用,并欢迎大家互相学习,共同进步。

  • mysql相关资源.txt

    mysql相关资源.txt

  • 利用HTML+CSS+JS的国漫分享网站(响应式)

    此项目为一个HTML+CSS+JS的国漫分享网站,用户可以在此网站中观看自己喜欢的国漫。此网站共有4个页面,分别为首页,最新动态,热门推荐,分类。页面动漫图片齐全,内容可更改。可用于期末课程设计或个人课程设计。

  • Python爬虫爬取漫画

    Python爬虫爬取漫画

Global site tag (gtag.js) - Google Analytics