JQuery Tutorial: jQuery webpage image Switching Effect

Source: Internet
Author: User

JQuery Tutorial: jQuery webpage image Switching Effect

Suppose you have a set of works, and you don't need to jump to another page to display multiple images. you can load the jpg image into the target element. The following is an example of jQuery image switching effect:

The core jQuery code in this example:

$ (Document). ready (function (){

$ ("H2"). append ('<em> </em> ')

$ (". Thumbs a"). click (function (){

Var largePath = $ (this). attr ("href ");

Var largeAlt = $ (this). attr ("title ");

$ ("# LargeImg"). attr ({

Src: largePath,

Alt: largeAlt

});

$("H2 em" 2.16.html ("(" + largeAlt + ")");

Return false;

});

});

First, add an empty <em>Element.

When you click the link in <p>

Save the href attribute of the link to the "largePath" variable.

Save the title attribute to the "largeAlt" variable.

Replace the scr attribute of with the variable "largePath", and the alt attribute with the variable "largeAlt ".

Set the content of em (in h2) to the value of largeAlt.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.