Saturday, 7 September 2013

how to change color on SVG with skrollr jQuery plugin

how to change color on SVG with skrollr jQuery plugin

My logo on my website is a SVG.
I have found some javascript, that makes my inline SVG logo editable:
/*
* Replace all SVG images with inline SVG
*/
jQuery('img.svg').each(function(){
var $img = jQuery(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
jQuery.get(imgURL, function(data) {
// Get the SVG tag, ignore the rest
var $svg = jQuery(data).find('svg');
// Add replaced image's ID to the new SVG
if(typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
// Add replaced image's classes to the new SVG
if(typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass+' replaced-svg');
}
// Remove any invalid XML tags as per http://validator.w3.org
$svg = $svg.removeAttr('xmlns:a');
// Replace image with new SVG
$img.replaceWith($svg);
}, 'xml');
});
Now that I can change the color with css, is it then possible to use it
with the jQuery plugin skrollr:
https://github.com/Prinzhorn/skrollr/tree/master/examples, so I can change
the color of the logo when scrolling down?
I was trying to add this to SVG but it didn't work:
data-0="fill:rgb(255,0,0);" data-500="fill:rgb(0,0,255);"
Below is the fiddle for it.
http://jsfiddle.net/NEhmK/1/

No comments:

Post a Comment