Image slider title

Lorem Ipsum is simply dummy text of the printing

Variants

Slider Full screen Full screen parallax Parallax

Installation

<link rel="stylesheet" href='../HTWF/scripts/flexslider/flexslider.css'>        
<script src='../HTWF/scripts/flexslider/jquery.flexslider-min.js'></script>

Usage

<div class="header-slider full-screen-title white">
    <div class="flexslider slider" data-options="directionNav:false,animation:fade,slideshowSpeed:5000">
        <ul class="slides">
            <li>
                <div class="bg-cover" style="background-image:url('http://www.framework-y.com/images/thumb-wide.png')">
                   <div class="bg-overlay transparent-dark"></div>
                </div>
            </li>
            <li>
                <div class="bg-cover" style="background-image:url('http://www.framework-y.com/images/thumb-wide.png')">
                   <div class="bg-overlay transparent-dark"></div>
                </div>
            </li>
            <li>
                <div class="bg-cover" style="background-image:url('http://www.framework-y.com/images/thumb-wide.png')">
                    <div class="bg-overlay transparent-dark"></div>
                </div>
            </li>
        </ul>
    </div>
    <div class="overlaybox">
        <div class="container">
            <div class="title-base">
                <hr class="anima" />
                <h1>TITLE COMPONENT / FULLSCREEN IMAGES SLIDER</h1>
                <p>Lorem Ipsum is simply dummy text of the printing.</p>
            </div>
        </div>
    </div>
</div>

Main settings

Name Type Description
White CSS Add class white to the container object to convert all colors to white. Use this feature for dark backgrounds.
Overlay pattern Mixed Add the code <div class="bg-overlay dotted"></div> into the title, as first row.
Overlay pattern is a feature of Javascript and CSS, complete documentation and patterns list here
Code location Information Insert the title code just belove header code. Example:
<body>
    <header> 
        ... 
    </header>
    <div class="header-slider full-screen-title">
        ...
    </div>
    ...
</body>
Full screen height HTML attribute If height of title is larger than expected, you can adjust it with attribute data-sub-height="123". Replace 123 with height value you want remove in px. This value often is the height of the header. Example:
<div class="header-title full-screen-title" data-sub-height="90">
    ...
</div>