Posts by Bia Silva • 111 points
11 posts
-
1
votes1
answer156
viewsA: Arrow function in slide
Change your plusDivs function: function plusDivs(n) { showDivs(slideIndex += n); var scrollTop = function() { window.scrollTo(0, 0); }; } The window.scrollTo(0, 0) will cause every time the button…
-
1
votes0
answers42
viewsQ: Allow download within Iframe on Android
I am developing an app with Ionic that has a webview page within an iframe, in this webview there is a download button that works normally in the browser, but android does not work. I believe…
-
1
votes1
answer622
viewsA: Responsive banner this with zoom
.slider ul li { width: 100%; height: 530px; display: table; background-repeat: no-repeat; -webkit-background-size: contain; background-size: contain; background-position: top center; } Change the…
-
0
votes2
answers18770
viewsA: Online Video Player that runs video files . mkv and . mp4
Tries the https://videojs.com/ He is very good and has a very complete documentation. An example of implementation, taken from the videojs page itself: <head> <link…
-
0
votes1
answer915
viewsA: Format phone number as (00) 00000-0000
It has a very simple solution using the jquery.Mask plugin First, you can find jquery.Mask at this link: https://igorescobar.github.io/jQuery-Mask-Plugin/ Then, in your JS file, just put this…
-
1
votes2
answers113
viewsA: How to center a form without affecting the Abels?
Use the flexbox feature of css3: .container { display: flex; flex-direction: row; justify-content: center; align-items: center } Example: https://codepen.io/biancassilva/pen/KexbjK…
-
-1
votes2
answers2982
viewsA: Change icon automatically by clicking
Just add another class to your second button: <!--Campo Senha2 Este campo está em uma modal--> <form method="POST"> <div class='input-group col-lg-6'> <div…
-
0
votes5
answers889
viewsA: Automatically delete inputs later
Exchange that line: $("#feedback_form").find('input').val(''); //clear text For this, using the trigger() jquery: $("#feedback_form').trigger("reset"); Take a look here:…
-
0
votes1
answer58
viewsA: Does anyone know where I can find material for per toolbar in a Textarea, to use with php in the posting area?
https://www.tinymce.com/ To use is simple, just add this script into your code: <script src="https://cloud.tinymce.com/stable/tinymce.min.js"></script><script>tinymce.init({…
-
1
votes1
answer198
viewsA: How to export Sublime 3 data
The best way is to sync the user folder, there are several ways to do this - Dropbox, git and manual. The installed packages are registered in Package Control.sublime-Settings, which is located in…
-
0
votes3
answers893
viewsA: 100% effect on Carousel
The position of your "overlay-effect" div is wrong. You’re putting it outside your slide, if you want it to take 100% of the height of the slide, it has to be inside the slide div, so you can take…