Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

carousel asp.net mvc beginner

<header id="myCarousel" class="carousel slide">
    <!-- Indicators -->
    <ol class="carousel-indicators">
        <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
        <li data-target="#myCarousel" data-slide-to="1"></li>
        <li data-target="#myCarousel" data-slide-to="2"></li>
    </ol>

    <!-- Wrapper for slides -->
    <div class="carousel-inner">
        <div class="item active">
            <div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div>
            <div class="carousel-caption">
                <h2>Caption 1</h2>
            </div>
        </div>
        <div class="item">
            <div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Two');"></div>
            <div class="carousel-caption">
                <h2>Caption 2</h2>
            </div>
        </div>
        <div class="item">
            <div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Three');"></div>
            <div class="carousel-caption">
                <h2>Caption 3</h2>
            </div>
        </div>
    </div>

    <!-- Controls -->
    <a class="left carousel-control" href="#myCarousel" data-slide="prev">
        <span class="icon-prev"></span>
    </a>
    <a class="right carousel-control" href="#myCarousel" data-slide="next">
        <span class="icon-next"></span>
    </a>
</header>
Comment

PREVIOUS NEXT
Code Example
Csharp :: c# ternary operator 
Csharp :: how to trim path in C# 
Csharp :: c# convert datetime to year & month 
Csharp :: get enum value c# 
Csharp :: disabling a button if textbox is empty c# 
Csharp :: c# Program to check if a given year is leap year 
Csharp :: get domain name from email in asp.net c# 
Csharp :: LINQ: 2 join with group by 
Csharp :: singleton design pattern c# volatile 
Csharp :: reverse linked list 
Csharp :: Convert Json String to model Class or Object 
Csharp :: window height in C# forms 
Csharp :: ignore ssl c# 
Csharp :: c# iterate sorteddictionary 
Csharp :: delay activity in uipath 
Csharp :: how to create url parameters for URi C# 
Csharp :: c# creating an array 
Csharp :: C# linq mselect 
Csharp :: c# datagridview set column header alignment 
Csharp :: c# float 
Csharp :: c# webapi return file 
Csharp :: wpf relativesource 
Csharp :: read json from assets c# 
Csharp :: clickable table row asp.net core 
Csharp :: C# traverseall elements in class property 
Csharp :: c# calculate checksum of file 
Csharp :: how to check if an integer is in array c# 
Csharp :: windows forms webbrowser refresh 
Csharp :: blazor image button 
Csharp :: convert video to byte array c# 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =