zdenekzahor / webfontloader
Installs: 75
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/zdenekzahor/webfontloader
Requires
- php: >=7.1
- nette/application: ^3.1
- nette/di: ^3.0
This package is not auto-updated.
Last update: 2025-10-24 03:25:17 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; }