반응형
반응형

 

 

23 Beautiful jQuery Text Animation Effects Examples with Tutorials

 

Link : http://megahitmag.com/jquery-text-animation-effects-examples-tutorials/

 

jQuery is a great JavaScript library, you can give a direction to your creativity when it comes to making stylish Image galleries, Menus, Animation Effects and attractive text effects using jQuery. Today we will show you tutorials on how to create mouse over text animation effects with jQuery with the help of these superb 23 examples. You can give color effects, scrolling effects, hovering, Fly, neon and light effects and much more through jQuery.

Apple-like Retina Effect With jQuery

jquery text effects

Check this tutorial to know how the author has turned a static image into a fully functional “Retina effect” with only jQuery and CSS.

More Information on Apple-like Retina Effect With jQuery

jQuery Text Animation Effect – Fading color for inline text links

jquery text effects

A simple UX trick that can be easily implemented into your web sites. With a few lines of jQuery it will make your text links fade to another color on rollover.

More Information on Fading color effect for inline text links using jQuery

Simple Banner Rotator Animation Effect With jQuery, php & MySQL

banner Rotator jquery Animation effects

You can now create and randomly display banners on your site. Each of the banners features a neat jQuery animation effect, which you can customize to fit your own needs.

More Information on Simple Banner Rotator With PHP, jQuery & MySQL

jQuery Animation Effects Plugin – Approach

jQuery Animation Effects Plugin

Approach is a jQuery plugin that allows you to animate style properties based on the cursor’s proximity to an object.

More Information on jQuery Approach

MicroTut: The jQuery Hover Method

jquery hover effect

When building a navigation menu, or any other jQuery script, it is often necessary to have a robust method with which to define a mouse over and mouse out state. This is where the hover() method comes along.

More Information on MicroTut: The jQuery Hover Method

How to Create a 3D Tag Cloud in jQuery

jquery 3d tag cloud

With browsers rendering JavaScript faster than ever before, it’s a great opportunity to get creative with jQuery. This tutorial will show how to create a scrolling 3D tag cloud

More Information on How to Create a 3D Tag Cloud in jQuery

Neon Text Effect With jQuery & CSS

jquery css text effect

Check this tutorial to know how to create a neon glow text effect with CSS and jQuery.

More Information on Neon Text Effect With jQuery & CSS

jParallax

jParallax is a jQuery parallax plugin. It turns a selected element into a ‘window’, or viewport, and all its children into absolutely positioned layers that can be seen through the viewport.

jquery parallax plugin

More Information on jParallax

Circulate

we can animate the “top” value with one easing function while animating the “left” value with a different easing function.

jquery animation effect

More Information on Circulate

Colortip – a jQuery Tooltip Plugin

This jQuery tooltip plugin is going to convert the title attributes of elements withing your page, into a series of colorful tooltips. Six color themes are available, so you can easily match it with the rest of your design.

jquery tooltip plugin

More Information on Colortip – a jQuery Tooltip Plugin

Color Fading Menu Effect with jQuery

jquery text effects

Here author will demonstrate how to perform colour fading menu effect with jquery and image merging.

More Information on Color Fading Menu with jQuery

Grid Accordion

grid accordion

A grid of cells expand both vertically (like a regular accordion) as well as horizontally to display the content they contain.

More Information on Grid Accordion

Leopard Desktop with jQuery using jqDock

jqdock

Check how to use jQuery to create a completely coded Dashboard, just like Leopard! This can be handy in hiding a whole lot of gadgets or widgets you don’t have space for

More Information on Leopard Desktop with jQuery using jqDock

BBC Radio 1 Zoom Tabs

jquery mouse hover zoom effect

The mouse rolls over the image block, tabs slide up and the image zooms a little to reveal more of the picture.

More Information on BBC Radio 1 Zoom Tabs

JQuery Based Flipped Image Gallery with Bounce Effects

jquery mouseover effect

Image galleries are most important element of any website. Here, I have created a simple jQuery based flipped image gallery. On mouce hover the images will expand. Its simple and stylish gallery.

More Information on JQuery Based Flipped Image Gallery with Bounce Effects

Create a Stunning Sliding Door Effect with jQuery

jquery hover effect

Mouse over and mouse out event will move the corners diagonally out and in according to the mouse event.

More Information on Create a Stunning Sliding Door Effect with jQuery

How to Make a Threadless Style T-Shirt Gallery

jquery hover effect

There’s a thumbnail which is a full sized image in a container div, which is smaller than the full sized image. The image is centered within it, but doesn’t show entirely because overflow:hidden is turned on. When the mouse hovers over the thumbnail, overflow:hidden gets turned off, and the entire image is displayed.

More Information on How to Make a Threadless Style T-Shirt Gallery

flashlight

jQuery flash light

Your mouse works as a flashlight and you can read the content only where you are moving your mouse.

More Information on flashlight

Sproing! – Make An Elastic Thumbnail Menu

jquery menu effect

It Magnifies menu items when they are hovered over. Also Menu items expand upwards.

More Information on Sproing! – Make An Elastic Thumbnail Menu

Halftone Navigation Menu With jQuery & CSS3

jquery menu effect

It allows 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.

More Information on Halftone Navigation Menu With jQuery & CSS3

a Smooth Animated Menu with jQuery

jquery animation effect

Ever seen some excellent jQuery navigation that left you wanting to make one of your own? Here author will do just that by building a menu and animate it with some smooth effects.

More Information on a Smooth Animated Menu with jQuery

AnythingZoomer: jQuery Zoom Animation Effect

jquery zoom animation effect

This is a jQuery zoom animation plugin, so you’ll need to load the jQuery library first, then the plugin file, then invoke the new function on the area you wish to have zooming.

More Information on AnythingZoomer

jQuery PhotoShoot Plugin 1.0

jquery photoshooting effect

The jQuery PhotoShoot plugin gives you the ability to convert any div on your web page into a photo shooting effect, complete with a view finder.

More Information on jQuery PhotoShoot Plugin 1.0

반응형
반응형

[CSS] css 참고 사이트.   transform, transition, Animation

 

CSS3 transform:skew
CSS3 transform:rotate
CSS3 transform-origin

 

transform
transition
animation

 

http://tcbs17.cafe24.com/tc/html5/css_/css_demo2/index.html


SVG : Scalable Vector Graphics

 

CSS 참고 사이트
http://htmlcss.kr/
http://w3schools.com/
http://css3generator.com/
http://caniuse.com/

반응형
반응형

Erlang

 

http://www.erlang.org/

 

wiki kor : http://xper.org/wiki/seminar/ErlangLanguage

 

What is Erlang?

Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance.

 

 

Starting erlang

If you are running a unix system type "erl" or, if you are running on windows start Erlang by clicking on the Erlang start icon. You should see something like this:

$ erl
Erlang R14B (erts-5.8.1.1) [source] [smp:2:2] [rq:2] [async-threads:0] [kernel-poll:false]

Eshell V5.8.1.1 (abort with ^G)

 


1>

 

The ">" prompt means the system is waiting for input.Using Erlang as a calculator

 

1> 2*6.
12
2>

 

Remember to terminate every expression with a DOT followed by a newline!

Editing previous expressions

Previous expressions can be retrieved and edited using simple emacs line editing commands. The most common of these are:

  • ^P fetch the previous line.
  • ^N fetch the next line.
  • ^A Go to the beginning of the current line.
  • ^E Go to the end of the current line.
  • ^D Delete the character under the cursor.
  • ^F Go forward by one character.
  • ^B Go Back by one character.
  • Return Evaluate the current command.

Note: ^X means press Control + X

Try typing Control+P to see what happens.

Compiling your first program

Type the following into a file using your favorite text editor:

 

 

-module(test).
-export([fac/1]).

 

 
fac(0) -> 1;
fac(N) -> N * fac(N-1).

 

 

Save the file as test.erl The file name must be the same as the module name.

Compile the program by typing c(test) then run it:

 

 

3> c(test).
{ok,test}
30> test:fac(20).
2432902008176640000
4> test:fac(40).
815915283247897734345611269596115894272000000000
32>

 

 

Now go and write some games!

Digging deeper
반응형
반응형

파일검색 프로그램 - Everything search engine

http://www.voidtools.com/

 

  • Download
  • FAQ
  • Support
  • Forums
  • Donate
  • Contact
  • Everything search engine

    Locate files and folders by name instantly.

    Everything
    • Small installation file
    • Clean and simple user interface
    • Quick file indexing
    • Quick searching
    • Minimal resource usage
    • Share files with others easily
    • Real-time updating
    • More...

    For more information please visit the Everything FAQ


    Download Everything for Windows 2000, XP, 2003, Vista, 2008 and Windows 7

    Everything-1.2.1.371.exe (334 KB)

    Everything-1.2.1.371.zip (Portable, 272 KB)

    (See list of changes)Older versionsMD5

    Donate with PayPal Flattr this

    Download Everything 1.3.3.658b Beta for Windows

    Everything-1.3.3.658b.x64.exe (Installer, x64, 520 KB)

    Everything-1.3.3.658b.x86.exe (Installer, x86, 440 KB)

    Everything-1.3.3.658b.x64.zip (Portable, x64, 533 KB)

    Everything-1.3.3.658b.x86.zip (Portable, x86, 425 KB)

    (See list of changes)MD5

    Donate with PayPal Flattr this

     

    반응형
    반응형

     

    http://www.daftlogic.com/projects-text-to-image.htm

     

    PHP Text to Image

    Change the settings and the click Create

    Text The text to display
    Rotation 0=normal 90=sideways
    Font Size Points
    Font
    Padding Space around the image
    Transparent
    Fore Colour R G B (0-255)
    Back Colour R G B (0-255)
    (pop-up window)


    Description

    This script is a means to convert a string of text into an image. This has some simple uses such as displaying text such as email address that cannot be programmatically found. This can help to reduce the possibility of your email address being picked up by web crawlers and used for junk mail.

    How To Use

    To use the example interface above, simply modify or insert the string of text. You can edit any of the other settings, but this is optional.

    Further Uses and Ideas:

    How it Works:

    The PHP Script

    contact us for more information

    Further Help

    For anyone finding problems using this...

    (1) Please test this example to ensure imagecreate works on your server...

    <?php
    header("Content-type: image/png");
    $im = @imagecreate(110, 20)
    or die("Cannot Initialize new GD image stream");
    $background_color = imagecolorallocate($im, 0, 0, 0);
    $text_color = imagecolorallocate($im, 233, 14, 91);
    imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
    imagepng($im);
    imagedestroy($im);
    ?>

    (2) Make sure to use the example at the top of this page by sending POST variables from your form. For example msg,font,size ...

    Relevant Links

    반응형
    반응형

    Appium

    Automation for Apps

    Appium is an open source test automation framework for use with native and hybrid mobile apps.
    It drives iOS and Android apps using the WebDriver JSON wire protocol.

     

    Introducing Appium.

    Watch the Videos


    Forget recompiling

    Appium Philosophy

    Appium is built on the idea that testing native apps shouldn't require including an SDK or recompiling your app. And that you should be able to use your preferred test practices, frameworks, and tools. Appium is an open source project and has made design and tool decisions to encourage a vibrant contributing community.

    Use your favorite tool

    Use your favorite tools

    Appium aims to automate any mobile app from any language and any test framework, with full access to back-end APIs and DBs from test code. Write tests with your favorite dev tools using all the above programming languages, and probably more (with the Selenium WebDriver API and language-specific client libraries).

    Requirements

    Requirements

    iOS

    Mac OSX 10.7+
    XCode 4.5+ w/ Command Line Tools

    Android

    Mac OSX 10.7+ or Windows 7+ or Linux
    Android SDK ≥ 16 (SDK < 16 in Selendroid mode)

    Easy setup process, run a test now.

    Install node.js (includes npm, the node.js package manager).

    > sudo npm install -g appium
    > npm install wd
    > appium &
    > node your-appium-test.js

    See the Appium example tests.

    반응형

    + Recent posts