Documentation

Introduction

Begin your journey with Kaiyun. Leverage our expertise in creating conversion-focused platforms that deliver comprehensive sports and entertainment content.

Getting Started with Kaiyun

Start engaging with Kaiyun, your all-in-one hub for sports and entertainment. Access the latest updates and features through our dedicated application.

CSS

Include the primary Kaiyun stylesheet in your HTML's <head> section to ensure consistent styling across all devices.

<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />

JS

Many interactive features require JavaScript. Ensure you have included jQuery, the Kaiyun core scripts, and any necessary plugins near the end of your <body> tag for optimal performance.

<script src="js/kaiyun.core.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>

Core Components

Adhere to modern web standards for the best experience. Utilize an HTML5 doctype and a viewport meta tag for responsive design. Your basic page structure should resemble this:

Standard CSS:
<!doctype html>
<html lang="en">
    <head>

        <meta charset="utf-8" />
        <title> Landrick - Saas & Software Landing Page Template </title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="description" content="Site description" />
        <meta name="keywords" content="Your tags" />

        <!-- favicon icon -->
        <link rel="shortcut icon" href="images/favicon.ico">

        <!-- Bootstrap -->
        <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />

        <!-- Main css -->
        <link href="css/style.css" rel="stylesheet" type="text/css" />
    
    </head>

    <body>

        <!-- Loader Start -->
        <div id="#--------">
            --------
            --------
        </div>
        <!-- Loader End -->

        <!-- Navbar Start -->
        <header>
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </header>
        <!-- Navbar End -->

        <!-- Hero Start -->
        <section class="--------">
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </section>
        <!-- Hero End -->

        <!-- Footer Start -->
        <footer>
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </footer>
        <!-- Footer End -->

        <!-- Back To Home Start -->
        <a href="#" class="--------" id="#--------">
            --------
            --------
        </a>
        <!-- Back To Home End -->

        <!-- Javascript Start -->
        <script src="js/jquery-3.4.1.min.js"></script>
        <script src="js/bootstrap.bundle.min.js"></script>
        --------
        --------
        --------
        <script src="js/app.js"></script>
        <!-- Javascript End -->
    </body>
</html>
                        
Right-to-Left (RTL) Support
RTL CSS:

To enable Right-to-Left (RTL) language support, replace 'style.css' with 'style-rtl.css' in your stylesheet links.

Dark Mode
Dark Mode CSS:

For a dark visual theme, switch the reference from 'style.css' to 'style-dark.css'.

Dark RTL CSS:

Combine dark mode and RTL support by linking to 'style-dark-rtl.css'.

Menu
Menu Alignment: Center to Right

To align the main navigation menu to the right, append the class 'nav-right' to the navigation container.

Menu Alignment: Center to Left

To align the main navigation menu to the left, append the class 'nav-left' to the navigation container.

Menu Style: Light with Center

For a light navigation theme with a centered menu, apply the class 'nav-light' to the navigation container.

Menu Style: Light with Right

To achieve a light navigation theme with a right-aligned menu, use classes 'nav-right' and 'nav-light'.

Menu Style: Light with Left

For a light navigation theme with a left-aligned menu, use classes 'nav-left' and 'nav-light'.