I currently have Fancybox implemented on my portfolio site which you can view here: http://www.thinkcreatelive.com I am redesigning the site and am looking to implement that Fancybox action with the Quicksand action I'm testing here: http://www.thinkcreatelive.com/graphicdesign
This is how I have it working currently:
<li><a href="javascript:;" id="graphicgallery1">
<img alt="Magazine" src="images/mag_icon.jpg"/><span class="text">Editorial Design</span></a></li>
And then the portfolio.embed.js file that holds all of those files is pretty lengthy so I'll share the first part of it.
$(document).ready(function() {
$("a.fancybox").fancybox({
'titlePosition' : 'inside'
});
$("#graphicgallery1").click(function() {
$.fancybox([
{
'href' : 'images/graphic/mag1.jpg',
'title' : '1/4: Cover design for a twice-yearly style magazine for WITNESS, a nonprofit human rights advocacy group.'
},
{
'href' : 'images/graphic/mag2jpg',
'title' : '2/4: Image heavy spread focusing on the work of filmmaker Shirin Neshat.'
},
{
'href' : 'images/graphic/mag3.jpg',
'title' : '3/4: Multicontent spread showing the conclusions of two articles and a reader’s buying guide.'
},
{
'href' : 'images/graphic/mag4.jpg',
'title' : '4/4: Text heavy spread focusing on Google’s involvement with the Crisis in Darfur.'
},
], {
'padding' : 10,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'image',
'titlePosition' : 'inside',
'changeFade' : 0
});
});
For the test site this is how the html is for that project:
<li class="item" data-id="id-6" data-type="graphicdesign">
<a href="javascript:;" id="graphicgallery1"><img src="images/graphicdesign/magazine.jpg" alt="magazine" /></a>
</li>
And this is my script.js file for the Quicksand action:
$(document).ready(function(){
// Blur images on mouse over
$(".portfolio a").hover( function(){
$(this).children("img").animate({ opacity: 0.75 }, "fast");
}, function(){
$(this).children("img").animate({ opacity: 1.0 }, "slow");
});
// Clone portfolio items to get a second collection for Quicksand plugin
var $portfolioClone = $(".portfolio").clone();
// Attempt to call Quicksand on every click event handler
$(".filter a").click(function(e){
$(".filter li").removeClass("current");
// Get the class attribute value of the clicked link
var $filterClass = $(this).parent().attr("class");
if ( $filterClass == "all" ) {
var $filteredPortfolio = $portfolioClone.find("li");
} else {
var $filteredPortfolio = $portfolioClone.find("li[data-type~=" + $filterClass + "]");
}
// Call quicksand
$(".portfolio").quicksand( $filteredPortfolio, {
duration: 800,
easing: 'easeInOutQuad'
}, function(){
// Blur newly cloned portfolio items on mouse over and apply prettyPhoto
$(".portfolio a").hover( function(){
$(this).children("img").animate({ opacity: 0.75 }, "fast");
}, function(){
$(this).children("img").animate({ opacity: 1.0 }, "slow");
});
});
$(this).parent().addClass("current");
// Prevent the browser jump to the link anchor
e.preventDefault();
})
});
I need to somehow get these two jquery actions to work together. Any help is greatly appreciated and let me know if anymore code would be useful. Thank you all for your time :)