jquery Example Tutorial: jquery page Image Switching effect

Source: Internet
Author: User

If you have a set of works, you can display multiple images without having to jump to another page, and you can load the JPG into the target element. Here is an example of the jquery image switching effect:

The core jquery code for the 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"). HTML ("(" + Largealt +) ");

return false;

});

});

First, add an empty <em> element to H2.

When clicking on the link in <p>

Saves the linked href attribute to the "largepath" variable.

Then save the Caption property to the "Largealt" variable

Replace the SCR property of the with the variable "Largepath" with the variable "Largealt" instead of the Alt property

Sets the contents of EM (in H2) to the value of the variable Largealt.

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.