jQuery.Animator

码农软件 · 软件分类 · jQuery高级页面组件 · 2019-12-31 20:59:31

软件介绍

A easy way to create animations with jQuery

This plugin provide a easy way to create animations with jQuery and using the central timer from jQuery you don't overload your pages and get the best experience with animations.

<div id="Walker" style="position: relative;left: 0;width: 100px;height: 50px;background: #000;color: #fff">Animation Test</div>

<script language="JavaScript">
<!--
  function AnimateWalker(Walker, GoEnd){
    // Left Walk 1 by 1
    newLeft = parseInt(Walker.css("left")) + 1;
    // Check GoEnd is true to go to end of the animation
    if(GoEnd) newLeft = 400;
    Walker.css("left", newLeft);
    // if the setup left keep less then 400 whe continue the animation
    return (newLeft < 400);
  }

  $(function(){
    $("#Walker").animator(10, AnimateWalker);
  });
//-->
</script>

 

Plugin page:
http://gsaraiva.projects.pro.br/?page_id=44

My site, I use jQuery.Animator ^^
http://gsaraiva.projects.pro.br/

本文地址:https://codercto.com/soft/d/22384.html

Intel汇编语言程序设计

Intel汇编语言程序设计

Kip Irvine / 电子工业出版社 / 2007-9-1 / 61.00元

《国外计算机科学教材系列•Intel汇编语言程序设计(第5版)》全面细致地讲述了汇编语言程序设计的各个方面。从微处理器体系结构、工作机制到指令集;从最基本的编译器链器的使用到高级过程、结构和宏的使用;从用纯汇编编写程序到用C/C++等最新编译器与汇编的混合接口编程;从16位实模式下BIOS、DOS实模式文本及图形程序设计到32位保护模式的Windows程序设计;从磁盘基础知识到Intel指令编码、......一起来看看 《Intel汇编语言程序设计》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器