如何从https://www.larousse.fr获取声音图标?
How to get the sound icon from https://www.larousse.fr?
我正在尝试从 url.
下载 png 格式的声音图标
我检查了CSS,它显示
.lienson:after {
font-family: "fontello";
font-size: 20px;
font-weight: normal;
font-style: normal;
display: inline;
content: '\e82c';
color: #ff4b54;
text-decoration:none;
cursor:pointer; /*gestion v.audio*/
}
@font-face {
font-family: 'fontello';
src: url('./../fonts/fontello.eot?58255341');
src: url('./../fonts/fontello.eot?58255341#iefix') format('embedded-opentype'),
url('./../fonts/fontello.woff?58255341') format('woff'),
url('./../fonts/fontello.ttf?58255341') format('truetype'),
url('./../fonts/fontello.svg?58255341#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.fontello {
font-family: "fontello";
}
我猜要下载的 link 是 ./../fonts/fontello.svg?58255341#fontello
但不知道什么是完整的 link?
能否请您详细说明如何获得此图标?
这不是 png,它是网络字体。
所以,要么直接从 url 下载它,我不推荐这样做,因为它可能会引发版权问题。仅供参考,在这种情况下,字体 url 是相对于 css 文件 url.
或者您对该元素进行了截图,如果您使用它会引发类似的问题。
或者您在线搜索该字体,这可能会失败,因为 fontello 是一种字体构建工具,而您正在搜索的字体可能根本不存在于 public 域中。
我正在尝试从 url.
下载 png 格式的声音图标我检查了CSS,它显示
.lienson:after {
font-family: "fontello";
font-size: 20px;
font-weight: normal;
font-style: normal;
display: inline;
content: '\e82c';
color: #ff4b54;
text-decoration:none;
cursor:pointer; /*gestion v.audio*/
}
@font-face {
font-family: 'fontello';
src: url('./../fonts/fontello.eot?58255341');
src: url('./../fonts/fontello.eot?58255341#iefix') format('embedded-opentype'),
url('./../fonts/fontello.woff?58255341') format('woff'),
url('./../fonts/fontello.ttf?58255341') format('truetype'),
url('./../fonts/fontello.svg?58255341#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.fontello {
font-family: "fontello";
}
我猜要下载的 link 是 ./../fonts/fontello.svg?58255341#fontello
但不知道什么是完整的 link?
能否请您详细说明如何获得此图标?
这不是 png,它是网络字体。
所以,要么直接从 url 下载它,我不推荐这样做,因为它可能会引发版权问题。仅供参考,在这种情况下,字体 url 是相对于 css 文件 url.
或者您对该元素进行了截图,如果您使用它会引发类似的问题。
或者您在线搜索该字体,这可能会失败,因为 fontello 是一种字体构建工具,而您正在搜索的字体可能根本不存在于 public 域中。