Ja, mit der CSS-Filtereigenschaft Unterstützt von modernen Browsern wie Webkit-Browsern, Firefox 34 und Edge.
filter: drop-shadow(horizontal-offset vertical-offset blur-radius color);
.shadow { filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7)); }
Sie können dies auch in SVG-Elementen verwenden:
<svg> <rect class="shadow" x="10" y="10" width="200" height="100" fill="#bada55" /> </svg>
Für Browser wie Firefox < 34, IE6 können Sie diese Polyfüllung verwenden:
// Usage: // $(element).cssShadow({horizontal-offset, vertical-offset, blur-radius, color}); $.fn.cssShadow = function(options) { // CSS syntax to include the units of the values var css = "-webkit-filter: drop-shadow(" + options.horizontalOffset + "px " + options.verticalOffset + "px " + options.blurRadius + "px " + options.color + ");"; // Applying the css return this.css({ 'filter': css, '-webkit-filter': css }); };
Das obige ist der detaillierte Inhalt vonKann CSS3 Schlagschatten auf SVG-Elemente anwenden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!