首页 > 其他分享 >10 个 jQuery 动态效果

10 个 jQuery 动态效果

时间:2023-07-04 20:32:31浏览次数:56  
标签:jQuery 10 http menu 动态效果 Demo Download com


Whatever content you have to present, you can present them in a more interactive & more responsive ways. In this article we’d like to present 10 Brilliant techniques using some jQuery magic to grab the attention of your users with a simple, rich user experience that gets them excited about your website.

1. Fluid Navigation – How to create an informative menu-bar with jQuery & CSS

Learn how to create a menu that appears like a standard menu bar in it’s default state, but which on rollover pulls down an information area that covers both the original menubar item and has an expanded section containing the text we want to display.

 

摘自 http://addyosmani.com/blog/fluid-navigation-how-to-create-an-informative-menu-bar-with-jquery-in-just-a-few-minutes/

Demo: http://addyosmani.com/resources/fluid-menu/fluid-menu.html

Download: http://addyosmani.com/resources/fluid-menu/fluid-menu.zip

2. Move Elements with Style

Roundabout is a jQuery plugin that converts a structure of static HTML elements into a highly customizable turntable-like interactive area. In its simplest configuration, Roundabout works with ordered- and unordered-lists, however after some quick configuration, Roundabout can work with an set of nested elements.

 

 

 

Demo: http://fredhq.com/projects/roundabout/#demo

Download: http://fredhq.com/projects/roundabout/#demo

3. Automatic Image Slider w/ CSS & jQuery

A simple image slider using HTML/CSS/Javascript. The html based image slider will have its benefits with SEO and will also degrade gracefully for those w/out js.

 

 

 

Demo: http://www.sohtanaka.com/web-design/examples/image-slider/

Download: http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/

4. jQuery Quicksand Plugin

With Quicksand you can reorder and filter items with a nice shuffling animation. At the very basic level, Quicksand replaces one collection of items with another. All you need to do is provide those two sets of items. You can do it in a couple of ways:

  • 1. Use plain HTML, like an unordered list.
  • 2. Download data by an Ajax call
  • 3. Transform HTML items by JavaScript (for example, sort them differently)

 

 

Demo: http://razorjack.net/quicksand/demos/one-set-clone.html

Download: http://razorjack.net/quicksand/

5. jQuery Magic Line Sliding Style Navigation

The idea is to have a highlight of some kind (a background or an underline) follow you around as you mouse over the different links in the navigation. This will happen with jQuery and it’s animation abilities. As such, the “magic line” will only be appended via JavaScript. Once added to the list and styled, as you mouse over the different links, it figures out the left positioning and the width and animates to match.

 

 

Demo: http://css-tricks.com/examples/MagicLine/

Download: http://css-tricks.com/jquery-magicline-navigation/

6. Text with Moving Backgrounds

The idea is to create a container which has a moving background, but only a set of letters will be visible of the background. It will be as if there are holes in your container.

Normally you would create a PNG file containing anti-aliased letters and place it inside some container on top of a background. Here what you need to do is place a full image over a background, covering parts that shouldn’t be seen. Just like a mask!

 

 

Demo: http://www.gayadesign.com/scripts/textmovingbg/

Download: http://www.gayadesign.com/diy/text-with-moving-backgrounds-with-jquery/

7. jDiv: A jQuery navigation menu alternative

A drop-down menu that displayed any content you need. Specifically a combination of images and lists, without being limited to only an unordered list. The advantages:

  • More flexibility in design that your usual UL style;
  • The use of the H4 tag and a UL for the hidden content adds some potential SEO but be sure that your header tag choice is in keeping with your copy’s layout;
  • As long as your first-level nav item is linked to a page, you still retain accessibility with JS disabled.

 

Demo: http://www.skyrocketlabs.com/categories/tutorials/jdiv/demo/index.html

Download: http://www.skyrocketlabs.com/articles/jdiv-a-jquery-navigation-menu-alternative.php

8. Halftone Navigation Menu With jQuery & CSS3

A CSS3 & jQuery halftone-style navigation menu, which will allow you to display animated halftone-style shapes in accordance with the navigation links, and will provide a simple editor for creating additional shapes as well.

 

 

Demo: http://demo.tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/demo.html#

Download: http://tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/

9. Animate Panning Slideshow with jQuery

Highly visual websites rely on the ability to showcase imagery automatically. Whether it be a professional photographer or zoo, slideshows pop up so frequently because they work well. In this tutorial we’ll have a slideshow that transitions by changing the visible window.

 

 

Demo: http://s3.amazonaws.com/buildinternet/live-tutorials/panning-slideshow/panning-slideshow.htm

Download: http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/

10. SlideDeck

SlideDeck is a new way to display content on websites, mobile phones and kiosks. It delivers a better user experience by removing the information overload and providing a fun, quick and beautiful way to interact with digital devices.

 

Demo: http://www.slidedeck.com/

Download: http://www.slidedeck.com/

标签:jQuery,10,http,menu,动态效果,Demo,Download,com
From: https://blog.51cto.com/u_8895844/6625132

相关文章

  • 1043_二叉树的生成和遍历(循环方式)
    1、遍历方法前序遍历(preOrder)对每个节点(子树)、贯彻这个遍历顺序:根->左->右中序遍历(inOrder)左->根->右后序遍历(postOrder)左->右->根层序遍历一层一层、从左到右遍历参考资料:二叉树各种遍历方法递归和循环实现树的层次遍历的几种方法......
  • 【总结】超100期经典GAN模型的解读,从结构设计到应用,你不动心吗?
    GAN无疑是这几年深度学习领域里最酷的技术,不管是理论的研究,还是GAN在图像生成,图像翻译,语音图像等基础领域的应用,都非常的丰富。我们公众号输出过非常多的GAN相关资源,本次做一个简单汇总,并重点介绍其中的各类GAN模型解读的专题。内容包括生成模型基础,自编码器与变分自编码器,生成对抗......
  • 【10.0】前端基础之JavaScript进阶
    【10.0】前端基础之JavaScript进阶【一】自定义对象可以看成Python中的字典,但是在JS中的自定义对象要比Python里面的字典操作起来更方便【1】创建自定义对象方式一vard={"键":"值",};操作方法vardict={"name":"dream","age":18};vardict={"name":"dream&......
  • Nftables栈溢出漏洞(CVE-2022-1015)复现
    背景介绍NftablesNftables是一个基于内核的包过滤框架,用于Linux操作系统中的网络安全和防火墙功能。nftables的设计目标是提供一种更简单、更灵活和更高效的方式来管理网络数据包的流量。钩子点(HookPoint)钩子点的作用是拦截数据包,然后对数据包进行修改,比较,丢弃和放行等操作......
  • 10基于构件的软件工程CBSE
    CBSE强调的是使用购买而来的构件,而不是重新建造。CBSE构件的特征是: 可组装性:通过公共接口交互,接口公开化,使得构件可以通过接口组装。可部署性:构件要求是二进制的形式,可以独立运行在平台之上文档化:构件有文件的记录供参考独立性:构件可以自行组装而不需要依赖特殊的环境标准......
  • Databend 开源周报第 100 期
    Databend是一款现代云数仓。专为弹性和高效设计,为您的大规模分析需求保驾护航。自由且开源。即刻体验云服务:https://app.databend.cn。What'sOnInDatabend探索Databend本周新进展,遇到更贴近你心意的Databend。Databendv1.2正式发布Databendv1.2.0已于2023年......
  • 多用表校准器TD1050钳形表校准装置
    TD1050装置具有“定点输出”方式,通过点击触摸屏,直接设置所需输出的量值,装置将全自动切换至最佳量程输出,使得校准数字式仪表变得非常方便。特别是在设定交流电压/电流输出时,直接同时输入幅值和频率即可,使用十分便捷。打开电流输出铜环的连接处,将标准电流表接入电流输出回路中,即可......
  • iZotope RX 10-音频修复软件mac/win版
    iZotopeRX是一个功能强大且灵活的音频修复软件,旨在帮助用户修复和恢复低质量、受损或有缺陷的音频。它拥有一系列先进的工具和算法,可以有效地处理各种音频问题,包括噪音、杂音、瑕疵、失真、鼠标点音、唇齿不清等。→→↓↓载iZotopeRX10mac/win版 以下是iZotopeRX10的......
  • 一键上阿里云可采集多种设备网关BL110
    BL110是一款功能强大的PLC协议支持网关。它具有多种协议转换能力,包括ModbusRTU、ModbusTCP、DL/T645、IEC101、IEC104、BACnetIP、BACnetMS/TP等。随着物联网技术的不断发展,PLC设备之间的互联和通信变得日益重要。然而,不同的PLC设备通常采用不同的通信协议,这就给PLC系统的集成......
  • 102.volatile限定符
    ☀警告volatile的确切含义与机器有关,只能通过阅读编译器文档来理解。要想让使用了volatile的程序在移植到新机器或新编译器后仍然有效,通常需要对该程序进行某些改变。直接处理硬件的程序常常包含这样的数据元素,它们的值由程序直接控制之外的过程控制。例如,程序可能包含一个由系......