Animate div's height with nested divs - html
Here is the snippet: https://jsfiddle.net/wc48jvgt/69/
I have a horizontally shaped div #cleaning_card_1, which has embedded divs which act like borders and vertical div #cleaning_card_right_1 with a nested div #cleaning_card_right_content_1. Inside the last div I have multiple divs which amount is dynamic. What I want to achieve is #cleaning_card_right_1 acting like a dropdown menu. I have a simple function to achieve that:
function maximizeCleaningCard () {
var cleaning_card_number = $(this).attr('number')
$(this).animate({width: '97%'}, 200, function () {
$('#cleaning_card_right_' + cleaning_card_number).removeClass('cleaning_card_right').addClass('cleaning_card_right_maximized')
$('#cleaning_card_right_' + cleaning_card_number).animate({height: 400}, 400)
$('#cleaning_card_right_content_' + cleaning_card_number).animate({height: 400 - 80}, 400)
$('#cleaning_card_right_left_border_1, #cleaning_card_right_right_border_1').animate({height: 400 - 80}, 400)
})
}
$('.cleaning_card').click(maximizeCleaningCard)
Animation is properly run on #cleaning_card_1 and border divs, however the #cleaning_card_right_content_1 is not animated at all. It just pops up there and thats it. If I'll remove nested items out of it, animation will properly work. I think that the problem is that div's height is not equal to 0 due to nested elements, but most likely I am mistaken. How to overcome this issue?
I noticed you are animated multiple divs to get the simultaneous vertical animate. You could streamline your div layout to get the same effect by just using 2 animates to complete the sequence.
I've removed all the unnecessary divs and used more practical css to get the same effect. Might not be perfect for your final use but may get you on the right track.
I've also added a minimizing sequence using the class .maximized to tell what state the cleaning card is in, and which sequence to run.
Here is a fiddle too https://jsfiddle.net/joshmoto/0ynrm1ts/2/
See comments in my script to see what is happening...
// maximize cleaning card
function maximizeCleaningCard() {
// store current clicked cleaning card variable for later use in animate
let cleaningCard = this;
// set cleaning card right element variable
let cleaningCardRight = $('.cleaning_card_right', cleaningCard);
// check we actually have a cleaning card right
if($(cleaningCardRight).length) {
// set the cleaning card right content variable
let cleaningCardRightContent = $('.cleaning_card_right_content', cleaningCardRight);
// if cleaning card has maximized class
if($(cleaningCard).hasClass('maximized')) {
// remove the maximized class
$(cleaningCard).removeClass('maximized');
// animate cleaning card right first to reverse sequence
$(cleaningCardRight).animate({
height: '0px'
}, 500, function() {
// when cleaning card right is fully closed
// animate cleaning card to finish the closing sequence
$(cleaningCard).animate({
width: '70%'
}, 500 );
});
// else if cleaning card does not have maximized class
} else {
// add the maximized class
$(cleaningCard).addClass('maximized');
// animate cleaning card width to 100%
$(cleaningCard).animate({
width: '100%'
}, 500, function() {
// when cleaning card is fully open
// animate cleaning card height to the cleaning card right content
$(cleaningCardRight).animate({
height: $(cleaningCardRightContent).outerHeight()
}, 500 );
});
}
}
}
// when cleaning card is clicked
$(document).on('click','.cleaning_card', maximizeCleaningCard );
BODY {
padding: 15px;
margin: 0;
}
.cleaning_card {
position: relative;
width: 70%;
border: 1px solid black;
height: 80px;
font-size: 15px;
overflow: visible;
margin-bottom: 15px;
}
.cleaning_card:hover {
cursor: pointer;
}
.cleaning_card_right {
position: absolute;
width: 25%;
height: 0;
background-color: white;
border-bottom: 1px solid black;
border-left: 1px solid black;
border-right: 1px solid black;
overflow: hidden;
top: 100%;
right: -1px;
}
.cleaning_card_right_content {
position: relative;
padding: 5px;
overflow: hidden;
}
.cleaning_card_right_content_item {
position: relative;
background-color: cornsilk;
}
<div id="cleaning_card_1" class="cleaning_card">
<div class="cleaning_card_right">
<div class="cleaning_card_right_content">
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Standard </div>
<div class="cleaning_card_right_value"> 1 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Junior Suite </div>
<div class="cleaning_card_right_value"> 2 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Lux </div>
<div class="cleaning_card_right_value"> 3 </div>
</div>
</div>
</div>
</div>
<div id="cleaning_card_2" class="cleaning_card">
<div class="cleaning_card_right">
<div class="cleaning_card_right_content">
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Standard </div>
<div class="cleaning_card_right_value"> 1 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Junior Suite </div>
<div class="cleaning_card_right_value"> 2 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Lux </div>
<div class="cleaning_card_right_value"> 3 </div>
</div>
</div>
</div>
</div>
<div id="cleaning_card_3" class="cleaning_card">
<div class="cleaning_card_right">
<div class="cleaning_card_right_content">
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Standard </div>
<div class="cleaning_card_right_value"> 1 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Junior Suite </div>
<div class="cleaning_card_right_value"> 2 </div>
</div>
<div class="cleaning_card_right_content_item">
<div class="cleaning_card_right_category"> Lux </div>
<div class="cleaning_card_right_value"> 3 </div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
Related
How to use an unordered list to display labeled inputs with customized checkboxes using only CSS and HTML?
I want to make a hidden context menu to display multiple genre selections. I want to customize the input checkboxes so that it looks like this: this image is my required finished layout It works fine without the label elements in the unordered list elements, however I need the label to toggle the checkbox. This is my current (incorrect) layout: this image is what I have achieved so far I have tried many things, including setting: position: relative/absolute display: flexbox/inline-block widths and heights How do I use an unordered list to display labeled inputs with customized checkboxes using only CSS and HTML? <div class="col-md-12 col-lg-4 text-lg-right mt-md-4 mt-lg-0"> <div class="d-flex-column w-100" id="genre-bar"> <!-- always visible selections bar --> <div class="row"> <div class="col-12 mb-3 d-flex text-align-right"> <span class="w-100 genre-bar-display text-align-right align-items-center"><i class="fas fa-chevron-down"></i></span> </div> </div> <div class="genre-hidden-section px-3"> <!-- Multiple selector --> <div class="row"> <div class="col-6 text-left"> <ul id="first-genre-list" class="genre-list"> <!-- This is populated by the #foreach below using JS --> </ul> </div> <div class="col-6 text-left"> <ul id="second-genre-list" class="genre-list"> <!-- This is populated by the #foreach below using JS --> </ul> </div> </div> </div> </div> <!-- This div gets emptied and removed by JS immediately --> <div id="select-close-books-genre" style="display:none;"> <ul> #foreach (GenreModel genre in Model.Genres) { <li class="genre-checkbox-container"> <label> #genre.Name <span class="genre-checkmark"></span> <input type="checkbox" value="#genre.Id"> </label> </li> } </ul> </div> </div> li input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .genre-checkmark { display: inline-block; top: 0; left: 0; height: 13px; width: 13px; border: 1px black solid; border-radius: 3px; background-color: white; } .genre-list { display:flex; flex-wrap:wrap; } .genre-checkbox-container { flex-grow: 1; } .genre-checkbox-container:hover span { background-color: #ccc; } .genre-checkbox-container input:checked ~ .genre-checkmark { background-color: #30d9c8; } const genreListDiv = $("#select-close-books-genre")[0]; const genreList = Array.from(genreListDiv.firstElementChild.children); genreListDiv.remove(); console.log(genreList) for (let i = 0; i < genreList.length/2; i++) { $('#first-genre-list')[0].appendChild(genreList[i]); }; for (let i = Math.ceil(genreList.length/2); i < genreList.length; i++) { $('#second-genre-list')[0].appendChild(genreList[i]); }; // Open and close the genre selector box $("#genre-bar").on('click', function(event) { $("#genre-bar").addClass("genre-bar-open"); $('body').on('click', function () { $('#genre-bar').removeClass("genre-bar-open"); }); $('#genre-bar').on('click', function (event) { event.stopPropagation(); }); });
Odd and even with classes instead of html tags [duplicate]
This question already has answers here: CSS 3 nth of type restricted to class [duplicate] (2 answers) Closed 1 year ago. I'm been working on finding a way to change my even and odd setup so it relies more on the classes instead of the html strucktur but am at a complet loss. The setup i but below works but if there's too much change to the HTML it would likely break. (The HTML images gives a simpel overview) The collapsed HTML version shows 3 div's but the 2 div is actually a set of 2. The classes it goes like this: academy-subject-block academy-column-block academy-column-block academy-subject-block The end result is 4 squares where the first one keeps it's image from what it had on tablet size screens and above. The next 3 will alternate between a white and a light grey bagground-color without the images. HTML from browser view: HTML Viewed from browser HTML Viewed from browser collapsed HTML: <div class="container academy "> <div class="academy-front-page"> <div class="fullPageAdjustment"> #Html.PropertyFor(m => m.CurrentPage.ContentArea) </div> </div> </div> ------------------------------------------------------------- <div class="academy-subject-block"> <div class="row"> <div class="col-xs-12"> <div class="img-fullwidth cover-image"> <img src="#Url.ContentUrl(Model.CoverImage)" alt="Cover Image" class="fill-height-image min-height"/> <div class="cta-turquiose-centerallign-mobile"> <a href="#Url.ContentUrl(Model.ButtonLink)" class="pulse animated btn bta-cta-turkuoise"> #Html.PropertyFor(l => l.ButtonText) </a> </div> </div> </div> </div> <div class="text-block-image fadeIn animated"> #Html.PropertyFor(m => m.OverlayText) </div> </div> ------------------------------------------------------------- <div class="academy-column-block "> <div class="img-fullwidth cover-image"> <img src="#Url.ContentUrl(Model.CoverImage)" alt="Cover Image" class="fill-height-img min-height"/> <div class="cta-turquiose-centerallign"> <a href="#Url.ContentUrl(Model.ButtonLink)" class="pulse animated btn bta-cta-turkuoise"> #Html.PropertyFor(l => l.ButtonText) </a> </div> </div> <div class="text-block-image-column-block fadeIn animated"> #Html.PropertyFor(m => m.OverlayText) </div> </div> SCSS: //Pulls the section up and down as to remove any spacing .academy-front-page { .fullPageAdjustment { #include mobile { position: relative; margin-top: -80px; bottom: -40px; } } //Removes images but keeps the size without effecting the fist image //And adds new text color to images that have changed :not(:first-child) { #include mobile { img { width: 0; } .text-block-image-column-block { color: #{$Color-DarkPurple}; } .text-block-image { color: #{$Color-DarkPurple}; } } } //Switches between background-colors of the images with exception of the fist one (Mobile only) div :nth-child(odd) { #include mobile { .img-fullwidth { background-color: #{$Color-White}; } .hidden-print { .img-fullwidth { background-color: #{$Color-WhiteSmoke}; } } } } :nth-child(even) { #include mobile { .img-fullwidth { background-color: #{$Color-White}; } .hidden-print { .img-fullwidth { background-color: #{$Color-WhiteSmoke}; } } } } }
Afaik, this is currently not possible with CSS alone. You would have to: use Javascript to implement that CSS class based or go with the CSS pseudo classes :nth-of-type or :nth-child depending on HTML elements.
how to change the background color or the text color of the whole site when clicking on a color ? Angular
How can I change the background color of the whole site or the text color when I click on a color from one component to another? I need to use the Output decorator but how ? style.component.html <div> <h2>background colors</h2> <div class="theme-options"> <div class="theme-white"></div> <div class="theme-blue"></div> <div class="theme-orange"></div> <div class="theme-green"></div> </div> <hr> <h2>text Color</h2> <div class="theme-options"> <div class="theme-white"></div> <div class="theme-blue"></div> <div class="theme-orange"></div> <div class="theme-green"></div> </div> </div> app.component.html <app-signin></app-signin> <app-style></app-style>
I just made a cut down version for demonstration for the background-color. It works the very same for text-color. Step 1: We need to add an unique onclick trigger to the buttons/boxes. So if they are pressed, they will fire a script. Step 2: We add a function that removes all possible classes to change the background-color by using document.querySelector("body").classList.remove("class");. That will remove possible a class from the body tag. Step 3: We add the same JS line with add instead of remove to add the wanted class to the body tag: document.querySelector("body").classList.add("class");. Step 4: We apply changes to the class in the css There of course possibilities to cut the script down. However I believe that this way is the easiest to understand and reproduce for a beginner. function textWhite() { document.querySelector("body").classList.remove("background-blue"); document.querySelector("body").classList.remove("background-orange"); document.querySelector("body").classList.remove("background-green"); document.querySelector("body").classList.add("background-white"); } function textBlue() { document.querySelector("body").classList.remove("background-white"); document.querySelector("body").classList.remove("background-orange"); document.querySelector("body").classList.remove("background-green"); document.querySelector("body").classList.add("background-blue"); } function textOrange() { document.querySelector("body").classList.remove("background-blue"); document.querySelector("body").classList.remove("background-white"); document.querySelector("body").classList.remove("background-green"); document.querySelector("body").classList.add("background-orange"); } function textGreen() { document.querySelector("body").classList.remove("background-white"); document.querySelector("body").classList.remove("background-orange"); document.querySelector("body").classList.remove("background-blue"); document.querySelector("body").classList.add("background-green"); } .background-white { background-color: white; } .background-blue { background-color: blue; } .background-orange { background-color: orange; } .background-green { background-color: green; } <body> <h2>background colors</h2> <div class="theme-options"> <div onclick="textWhite()" class="theme-white">White</div> <div onclick="textBlue()" class="theme-blue">Blue</div> <div onclick="textOrange()" class="theme-orange">Orange</div> <div onclick="textGreen()" class="theme-green">Green</div> </div> <hr> <h2>text Color</h2> <div class="theme-options"> <div class="theme-white">White</div> <div class="theme-blue">Blue</div> <div class="theme-orange">Orange</div> <div class="theme-green">Green</div> </div> </body>
CSS - How to have swiper slider arrows outside of slider that takes up 12 column row
I am using swiper slider and would like to have navigation arrows outside of the slider. What I would basically like to do is the same as it looks like on airbnb site, where slider with images takes up whole 12 column row, but arrows are outside of it. I am using bootstrap twitter css framework and I have tried various things but nothing worked and don't know how to achieve this? The css is this: .swiper-container { margin-top: 50px; position: relative; } .arrow-left { position: absolute; top: 50%; left: 0; } .arrow-right { position: absolute; top: 50%; right: 0; } Html looks like this: <div class="row swiper-container"> <div class="arrow-left"> <i class="ion-chevron-left"></i> </div> <div class="col-md-12 swiper-wrapper"> #foreach($videos as $video) <div class="swiper-slide video-card"> <header class="card__thumb"> <img src="{{ $video->getThumbnail() }}"/> </header> <div class="card__body"> <div class="card__category"> </div> <small> {{ $video->created_at->diffForHumans() }} </small> <span class="video-title"> <p> #if($video->title != '') {{ $video->title }} <i class="ion-arrow-right-c"></i> #else Untitled #endif </p> </span> </div> </div> #endforeach </div> <div class="arrow-right"> <i class="ion-chevron-right"></i> </div> </div> And this is the script: var carousel = function carousel() { var mySwiper = new Swiper ('.swiper-container', { direction: 'horizontal', nextButton: '.arrow-left', prevButton: '.arrow-right', slidesPerView: 4, simulateTouch: false, spaceBetween: 15, breakpoints: { 1181: { slidesPerView: 4 }, 1180: { slidesPerView: 3 }, 1020: { slidesPerView: 2 }, 700: { slidesPerView: 1 } } }); }; $(document).ready(function () { carousel(); });
I just did this for one of my current projects. You just have to change the location of the navigation HTML buttons and put them outside the swiper-container. For a better approach and behavior from the library, add a new class to them, and change the element in the JavaScript call. Example: <div class="swiper-container"> <div class="swiper-slides"></div> </div> <div class="swiper-button-prev-unique"></div> <div class="swiper-button-next-unique"></div> let carousel = new Swiper('.swiper-container', { navigation: { nextEl: '.swiper-button-next-unique', prevEl: '.swiper-button-prev-unique' } }); That worked perfect, and you can put your arrows outside the wrapper with ease with CSS.
For all my React folks out there: import { Swiper as SwiperClass } from 'swiper/types'; import { Swiper, SwiperSlide } from 'swiper/react'; export const MySwiper = () => { const [swiperRef, setSwiperRef] = useState<SwiperClass>(); const theSlides = useMemo(()=> ['slide one', 'slide two'], []) const handlePrevious = useCallback(() => { swiperRef?.slidePrev(); }, [swiperRef]); const handleNext = useCallback(() => { swiperRef?.slideNext(); }, [swiperRef]); return ( <div> <div> <button onClick={handlePrevious }> previous </button> </div> <Swiper onSwiper={setSwiperRef} > {theSlides.map((slide) => (<SwiperSlide key={slide}>{slide}</SwiperSlide>) </Swiper> <div> <button onClick={handleNext}> Next </button> </div> </div> ); };
If you using multiple swipers then you need to add different class names to swiper-cotainer and pagination arrows. And then create new Swiper and bind each arrows to local swiper. let arr_next = $('.template-next') //your arrows class name let arr_prev = $('.template-prev') //your arrows class name $('.swiper-container--template').each(function (index, element) { $(this).addClass('swiper' + index); arr_next[index].classList.add('template-next' + index); arr_prev[index].classList.add('template-prev' + index); new Swiper('.swiper' + index, { slidesPerView: 2, navigation: { nextEl: '.template-next'+index, prevEl: '.template-prev'+index }, slidesPerView: 2, //spaceBetween: 100, loop: true, breakpoints: { 961: { slidesPerView: 2 }, 740: { slidesPerView: 1 }, }, }); }); `
var swiper = new Swiper('.swiper-container', { nextButton: '.swiper-button-next', prevButton: '.swiper-button-prev', slidesPerView: 3, spaceBetween: 10, autoplay: 3500, autoplayDisableOnInteraction: false, loop: true, breakpoints: { 1024: { slidesPerView: 3, spaceBetween: 40 }, 768: { slidesPerView: 3, spaceBetween: 30 }, 640: { slidesPerView: 2, spaceBetween: 20 }, 320: { slidesPerView: 1, spaceBetween: 10 } } }); .container{max-width: 600px;margin: 0 auto;} .swiper_wrap{padding:0px 50px;height:100%;width: 100%;position: relative;display: block;text-align: left;} .swiper-button-next{ margin-top: 0px; position: absolute; top: 50%; right: -40px; width: 45px; height: 45px; transform: translateY(-50%); } .swiper-button-prev{ position: absolute; top: 50%; left: -40px; width: 45px; height: 45px; transform: translateY(-50%); margin-top: 0px; } <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/js/swiper.min.js"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/css/swiper.min.css" rel="stylesheet"/> <div class="container"> <div class="swiper_wrap"> <div class="slider-wrapper"> <div class="swiper-button-prev"></div> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <a href="#"> <img src="http://redsqdesign.co.uk/wp-content/uploads/2017/02/red-square.png"> </a> </div> <div class="swiper-slide"> <a href="#"> <img src="http://redsqdesign.co.uk/wp-content/uploads/2017/02/red-square.png"> </a> </div> <div class="swiper-slide"> <a href="#"> <img src="http://redsqdesign.co.uk/wp-content/uploads/2017/02/red-square.png"> </a> </div> <div class="swiper-slide"> <a href="#"> <img src="http://redsqdesign.co.uk/wp-content/uploads/2017/02/red-square.png"> </a> </div><div class="swiper-slide"> <a href="#"> <img src="http://redsqdesign.co.uk/wp-content/uploads/2017/02/red-square.png"> </a> </div> </div> <!-- Add Pagination --> <div class="swiper-pagination"></div> </div> <div class="swiper-button-next"></div> </div> </div> </div> <script src="http://www.jakse.si/test/jakse/taxi/js/swiper.min.js"></script> This works for me, it is the same like older answer, but maybe it looks better :)
Put this below swiper block: .section { .swiper-button-prev { left: -20px; } .swiper-button-next { right: -20px; } } <div class="section"> <div class="swiper"> <ul class="swiper-wrapper"> <li class="swiper-slide"> </li> </ul> </div> <div class="swiper-button-prev"></div> <div class="swiper-button-next"></div> </div>
if anyone is interested I've found an easy work-around for this issue position: fixed; will override the overflow:hidden; of the parent but it will make it appear relative to the root element, adding transform to the wrapper will make it relative again to the parent. new Swiper(".my-swiper", { navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", } }); .custom-swiper-wrapper { transform: translate(0, 0); .swiper-custom-nav { position: fixed; } } <div class="container custom-swiper-wrapper"> <div class="swiper my-swiper"> <div class="swiper-wrapper"> swiper items here </div> <div class="swiper-button-next swiper-custom-nav"></div> <div class="swiper-button-prev swiper-custom-nav"></div> </div> </div>
This is a general solution. To move your arrows outside the container you'll need to first remove the arrow divs from .swiper-container. Make another bigger container that has .swiper-container and your moved arrows. Give this bigger container position: relative as a reference to arrows that have position: absolute. Make sure that the .swiper-container width is changed to a value smaller than 100% (e.g. 90% 95%) to avoid overlapping with the arrows. If you like to keep the .swiper-container width same as that of the entire page width then give -ve margin to the bigger container.
This works if slidesPerView = 1: .swiper-container { padding-left: 50px; padding-right: 50px; } .swiper-slide { visibility: hidden; } .swiper-slide.swiper-slide-active { visibility: visible; }
In the wrapper function "carousel" we are using to initialize our Swiper instance we can use Swiper's native methods slideNext and slidePrev to add event listeners explicitly to ONLY children of a shared parent element. 1020: { slidesPerView: 2 }, 700: { slidesPerView: 1 } } }); mySwiper.el.parentElement.querySelector(".arrow-left").addEventListener('click', () => mySwiper.slideNext()); mySwiper.el.parentElement.querySelector(".arrow-right").addEventListener('click', () => mySwiper.slidePrev()); }; For this to work fully, .swiper-container, .arrow-right and .arrow-left will need to share a wrapper. In Leff's case ".swiper-container" should work just fine: <div class="row swiper-container"> <div class="arrow-left"> Because this approach allows us to isolate selected elements to a shared parent container, this can be safely used as part of a block of code that might appear more than once.
This is the basic example of how to achieve it. You were close. I slightly modified the code to make it visible within the snippet. $(document).ready(function () { var carousel = function carousel() { var mySwiper = new Swiper ('.swiper-container', { direction: 'horizontal', nextButton: '.arrow-left', prevButton: '.arrow-right', slidesPerView: 4, simulateTouch: false, spaceBetween: 15, breakpoints: { 1181: { slidesPerView: 4 }, 1180: { slidesPerView: 3 }, 1020: { slidesPerView: 2 }, 700: { slidesPerView: 1 } } }); }; carousel(); }); .row.swiper-container { margin-top: 50px; position: relative; width: 70%; margin: 0 auto; } .arrow-left { position: absolute; background: gray; top: 50%; left: -40px; width: 20px; height: 20px; transform: translateY(-50%); } .arrow-right { position: absolute; background: gray; top: 50%; right: -40px; width: 20px; height: 20px; transform: translateY(-50%); } .swiper-wrapper { margin: 0 auto; height: 200px; background: #f00; } <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.x.x/css/swiper.min.css" rel="stylesheet"/> <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.1/js/swiper.jquery.min.js"></script> <div class="row swiper-container"> <div class="arrow-left"> <i class="ion-chevron-left"></i> </div> <div class="col-md-12 swiper-wrapper"> <div class="swiper-slide video-card"> <header class="card__thumb"> <img src="{{ $video->getThumbnail() }}"/> </header> <div class="card__body"> <div class="card__category"> </div> <small> </small> <span class="video-title"> <p> </p> </span> </div> </div> </div> <div class="arrow-right"> <i class="ion-chevron-right"></i> </div> </div>
Ok, I had another method, What the guys suggesting will not work with multiple sliders on page. So, I added another two arrows, which will trigger the real arrows. the swiper had: { navigation: { nextEl: '.xnext', prevEl: '.xprev', } } $('.swiper-button-next').click( function(e){ $(this).parents('.swiper-container').find('.xnext').trigger('click'); }); $('.swiper-button-prev').click(function(e){$(this).parents('.swiper-container').find('.xprev').trigger('click');});
The code below help to use more than one swiper, using one class. (At first I was used this in a php loop of swipers) const swiperContainers = document.querySelectorAll('#swiper-global-container'); const swipers = document.querySelectorAll('#swiper-global-container .swiper'); swipers.forEach((swiper, index) => { swiper.classList.add(`swiper-${index}`); }) swiperContainers.forEach((container, index) => { container.querySelector('.swiper-button-next').classList.add(`swiper-next-${index}`) container.querySelector('.swiper-button-prev').classList.add(`swiper-prev-${index}`) }) swipers.forEach((swiper, index) => { new Swiper(`.swiper-${index}`, { navigation: { nextEl: `.swiper-next-${index}`, prevEl: `.swiper-prev-${index}`, }, }); }); html, body { margin: 0; padding: 0; } main { display: flex; flex-direction: column; min-width: 1300px; } #swiper-global-container { flex: 1; position: relative; max-width: 1250px; margin: 0 auto; } .swiper-slide { max-height: 50vh; } .swiper { max-width: 1200px; margin: 0 auto; } .swiper-button-prev { left: -50px !important; } .swiper-button-next { right: -50px !important; } <script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script> <main> <div id="swiper-global-container"> <div class="swiper"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1652961735386-883c83e4d464?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2670" alt=""> </div> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1572035563691-0944e6a816d5?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2670" alt=""> </div> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1652697911040-52d0453522a6?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2574" alt=""> </div> </div> </div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> <div id="swiper-global-container"> <div class="swiper"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1652721684678-a147a957a03e?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2748" alt=""> </div> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1652898756182-04023f4135a1?ixlib=rb-1.2.1&raw_url=true&q=80&fm=jpg&crop=entropy&cs=tinysrgb&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2664" alt=""> </div> <div class="swiper-slide"> <img src="https://images.unsplash.com/photo-1652162539309-c96b2694f02b?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1655" alt=""> </div> </div> </div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> </main> <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
I'm using react so I didn't want to go through the trouble of creating new event handlers for each of the toggles. I came up with a solution where you just add an extra div wrapper to the slide content and add padding: html <div class="row swiper-container"> <div class="arrow-left"> <i class="ion-chevron-left"></i> </div> <div class="col-md-12 swiper-wrapper"> #foreach($videos as $video) <div class="swiper-slide video-card"> <div class="video-card-inner"> <header class="card__thumb"> <img src="{{ $video->getThumbnail() }}"/> </header> <div class="card__body"> <div class="card__category"> </div> <small> {{ $video->created_at->diffForHumans() }} </small> <span class="video-title"> <p> #if($video->title != '') {{ $video->title }} <i class="ion-arrow-right-c"></i> #else Untitled #endif </p> </span> </div> </div> </div> #endforeach </div> <div class="arrow-right"> <i class="ion-chevron-right"></i> </div> </div> css .arrow-left { left: 0; } .arrow-right { right: 0; } .video-card { padding: 0rem 2rem; } The padding within the slide will create a gap with the .video-card-inner element that will house all of your content, thus allowing the arrows to sit outside of your visible content. You can still achieve this with custom toggles, but it will also work with their default toggles.
Just stumbled upon this issue today, here's my attempt at solving it. Basically it only requires you wrapping .swiper-container inside additional .swiper-container-wrapper, as Swiper allows passing references to HTMLElement instead of selector string. And you also get to keep the class names, no discrete classes required for navigation elements or container. At this point both navigation elements are placed inside .swiper-container-wrapper, as .swiper-container's siblings. $('.swiper-container-wrapper').each(function (index, element) { var swiperContainer = $(element).children('.swiper-container').get(0); var nextEl = $(element).children('.swiper-button-next').get(0); var prevEl = $(element).children('.swiper-button-prev').get(0); new Swiper(swiperContainer, { navigation: { nextEl: nextEl, prevEl: prevEl, }, }); });
How to have two elements with scrollbars next to each other?
I'm currently programming a view, that contains two list elements that can move information between each other. Here's a picture of how it currently looks: I supposedly have in the page a lot of space to the right of the table "CodigoAGrupador" for the table "Catalogos" to fit in, and it used to do so, but when I added the scrollbars, suddenly, they can only be together vertically, never horizontally. Here's the CSS code: #products { float: left; width: 500px; } #cart { width: 400px; right: 0px; top: 0px; float: right; max-height: 600px; overflow-y:auto; margin: 2px,2px,2px,2px; overflow-x: auto; } #ListaCodigos{ max-height:600px; width:500px; overflow-y:auto; margin: 2px,2px,2px,2px; overflow-x: auto; } And here's the code that I use for the html view (it contains logic that I use to dynamically create the lists, that part shouldn't be the issue) <div id="content"> <div id="ListaCodigos"> <h2 class="ui-widget-header">CodigoAgrupador</h2> <div id="products"> <div id="catalog"> #foreach (CodigoAgrupadorCuentas_CE c in Model.CodigosAgrupadores) { if (unchecked(double.Parse(c.CodigoAgrupador) == (int)double.Parse(c.CodigoAgrupador))) { <h3>#c.CodigoAgrupador - #c.NombreCuenta</h3> <div> <div class="subcatalog"> #foreach (CodigoAgrupadorCuentas_CE c2 in Model.CodigosAgrupadores) { if (double.Parse(c2.CodigoAgrupador) > double.Parse(c.CodigoAgrupador) && double.Parse(c2.CodigoAgrupador) < (double.Parse(c.CodigoAgrupador) + 1)) { <h4>#c2.CodigoAgrupador - #c2.NombreCuenta</h4> <div> <div class="SpecificCatalog"> <ol> <li class="placeholder">Add your items here</li> </ol> </div> </div> } } </div> <div class="GeneralCatalog"> <ol> <li class="placeholder">Add your items here</li> </ol> </div> </div> } } </div> </div> </div> <div id="cart"> <h2 class="ui-widget-header">Catalogos</h2> <div class="ui-widget-content"> #foreach (LedgerChartOfAccounts c in Model.Catalogos) { if (c.CodigoAgrupador == null) { <ul> <li class="draggable">#c.GLAccountNumber - #c.GLAccountName </li> </ul> } } </div> </div> <div> <footer>Inserte los catalogos en el grupo que pertenescan, jale.</footer> </div> </div> It probably is a very simple issue, but I couldn't find any specific answer to my problem and I already have struggled for quite a while. Any help is welcome.
You can just float:left the menu and ListaCodigos to get it to pull up. Make sure that content is wide enough to hold them both on one line however. However, then after menu div you will want to add a <div style="clear:both"></div>