zdenekzahor / webfontloader
此包最新版本(3.1.0)的许可证信息不可用。
3.1.0
2021-11-11 08:45 UTC
Requires
- php: >=7.1
- nette/application: ^3.1
- nette/di: ^3.0
This package is not auto-updated.
Last update: 2024-09-26 22:22:41 UTC
README
composer require zdenekzahor/webfontloader
extensions: webFontLoader: ZdenekZahor\WebFontLoader\DI\WebFontLoaderExtension webFontLoader: cookieName: wfont families: - name: Play weights: - 400 - 700 subsets: - latin - latin-ext
use ZdenekZahor\WebFontLoader\IWebFontLoaderFactory; use ZdenekZahor\WebFontLoader\WebFontLoader; /** * @var IWebFontLoaderFactory * @inject */ public $webFontLoaderFactory; protected function createComponentWebFontLoader(): WebFontLoader { return $this->webFontLoaderFactory->create(); }
<!DOCTYPE html> <html class="{control webFontLoader:htmlClass}"> <head> {control webFontLoader:head} </head>
html { font-family: sans-serif; } html.wf-active { font-family: 'Play', sans-serif; }