Socket
Socket
Sign inDemoInstall

@logo-software/header

Package Overview
Dependencies
16
Maintainers
9
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @logo-software/header

Header module adds a header area to the top of the landing page and manages its content. Header module supports responsive web design.


Version published
Weekly downloads
1
decreased by-50%
Maintainers
9
Install size
3.71 MB
Created
Weekly downloads
 

Readme

Source

Header Module

Header module adds a header area to the top of the landing page and manages its content. Header module supports responsive web design. It comes many features

  • theme
  • scroll spy
  • mobilized
  • alignment (right, left, center)

Click here for demo

Installation

All public npm packages of Logo Software is at https://www.npmjs.com/~logofe. To install Header Module:

$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/header -s

Just import it to your project of @NgModule import section.

@NgModule({
 imports: [CommonModule, HeaderModule],
})
export class AppModule {
}

Header Component

Headers are navigation components that display information and actions relating to the current screen. Add the below code to your code stack and give initializer parameters. Add the below code to your code stack and give initializer parameters.

app.component.html

<logo-header
 [containerStatus]="true"
 [defaultTheme]="headerTheme.START"
 [isMobilized]="true"
 [menuPosition]="'left'"
 [scrollPoint]="75"
 [scrollSpy]="true"
 [scrolledTheme]="headerTheme.SCROLL"
 [watchElement]="'body'"
>
  <!-- Your content goes here. Below code is a sample of usage. -->
  <div class="section-main">
    <logo-link [classes]="'ghost large'" [url]="'/products'">Products</logo-link>
    <logo-link [classes]="'ghost large'" [fragment]="'solutions'" [url]="'/'">Solutions</logo-link>
    <logo-link [classes]="'ghost large'" [url]="'/info/about'">About Us</logo-link>
    <logo-link [classes]="'ghost large'" [url]="'/blog'">Blog</logo-link>
    <logo-link [classes]="'ghost large'" [url]="'/contact'">Contact</logo-link>
  </div>
</logo-header>

For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview

Keywords

FAQs

Last updated on 23 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc