javascript 使用img svg和css效果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用img svg和css效果相关的知识,希望对你有一定的参考价值。

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');

        // Check if the viewport is set, if the viewport is not set the SVG wont't scale.
        if(!$svg.attr('viewBox') && $svg.attr('height') && $svg.attr('width')) {
            $svg.attr('viewBox', '0 0 ' + $svg.attr('height') + ' ' + $svg.attr('width'))
        }

        // Replace image with new SVG
        $img.replaceWith($svg);

    }, 'xml');

});

以上是关于javascript 使用img svg和css效果的主要内容,如果未能解决你的问题,请参考以下文章

在 <img> 标签中使用时,嵌入在 SVG 中的动态 CSS 不起作用

img src SVG改变填充颜色

CSS 和 Javascript 旋转仅在点击一次时有效?

CSS 动画不适用于 <img> 中的 svg

使用 css 过渡和 vanilla JavaScript 更改不透明度仅在淡出时有效

HTML 带有img标记和JavaScript的SVG图像,用于不支持的浏览器。