开发者

jQuery - Minified gallery, change background-color via CSS?

I have a site where I randomize the background image using a php rotator script file. But I was thinking, is it possible to create a small preview gallery of each background image and make it so that when the u开发者_Python百科ser hovers over an image, the css background image of the site is changed on the fly? And when the user clicks on the image he wants, the image is permanently changed? The image URL would probably need to be saved in a database record btw.

How would I do this? First I'd need to create the gallery right. Perhaps I could do a "for each image in folder, display as stack panel" ? Making it so that based on the images in a said folder, the images are automatically published in the gallery?

Any ideas or thoughts on how I should do this? Base it on an existing gallery plugin perhaps?


Assuming your images are in a div with a class of 'gallery'

​$(document).ready(function(){
    var originalBG = $('body').css('background');

    $('div.gallery img').hover(function(){
        // You could change this to include any other background options you need.
        $('body').css('background',"url('" + $(this).attr('src') + "')");
    },function(){
        $('body').css('background',originalBG);
    });

    $('div.gallery img').click(function(){
        originalBG = $('body').css('background');
        $.ajax({
            url: '/saveBG.php', // The url to your function to handle saving to the db
            data: originalBG,
            dataType:'Text',
            type: 'POST',  // Could also use GET if you prefer
            success: function(data) {
                // Just for testing purposes.
                alert('Background changed to: ' + data);
            }
        });
    });

});​
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜