やりたいことは、CSSの背景画像をアイコン画像ではなくアイコンフォントに置き換えることです。できません。これはCSSプロパティです。
.social-networks .Twitter{background:url(../images/social/Twitter.png);}
これはPHPのコードです。
<ul class="social-networks">
<?php if (my_option('Twitter_link')): ?>
<li>
<a href="<?php echo my_option('Twitter_link'); ?>" class="Twitter">Twitter</a>
</li>
<?php endif; ?>
インコンフォントを挿入する方法は<span class="icon">A</span>
次のようなものを試すことができます:[〜#〜] fiddle [〜#〜]
DIVがあるとします。
<div class="test"></div>
次のようなCSSスタイルを作成します。
.test {
width: 100px;
height: 100px;
border: 2px solid lightblue;
}
.test:before {
content: "H";
width: 100%;
height: 100%;
font-size: 5.0em;
text-align: center;
display: block;
line-height: 100px;
}
プロパティcontent
で「文字」を選択してから、font-size
、font-weight
、color
など...
CSSにはコンテンツプロパティがあります。
.icon-rocket:after {
content: "{Symbol for rocket}";
}
面白いものを思いつきました。imo:CSS element()
関数です。現在、それは firefoxでのみ動作します (そのブラウザの最後にリンクされている例を開くようにしてください)。
HTMLは次のとおりです。
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<div class="bg-patterns">
<i class="material-icons" id="icon">pets</i>
</div>
<div class="with-icon-bg">
Hi! I'm paragraph with background made from ordinary HTML element! And BTW - I'm a pets lover.
</div>
...およびコメント付きのCSS:
.material-icons {
/* icon font */
font-family: 'Material Icons';
color: #ddd;
}
/* this is a wrapper for elements you want to use
as backgrounds, should not be visible on page */
.bg-patterns {
margin-left: -90000cm;
}
.with-icon-bg {
/* all magic happens here */
background: -moz-element(#icon);
/* other irrelevant styling */
font-size: 25px;
width: 228px;
margin: 0 auto;
padding: 30px;
border: 3px dashed #ddd;
font-family: sans-serif;
color: #444;
text-align: center;
}
そして最後に- 実行例 (jsFiddle)があります。
背景画像の代わりにナビゲーションテキストを使用します。
$(".slider").owlCarousel({
navigation : true,
slideSpeed : 500,
singleItem:true,
navigationText:['<i class="fa fa-chevron-left" aria-hidden="true"></i>', '<i class="fa fa-chevron-right" aria-hidden="true"></i>']
});
フォントの素晴らしいアイコンのcssプロパティを設定します。これがアイコンの通常のCSSです。
.owl-button{
position:relative;
}
.owl-prev {
position:absolute;
top:0;
left:47%;
font-size: 30px;
}
.owl-next {
position:absolute;
top:0;
right:47%;
font-size: 30px;
}