Posts by Josias Viskoo • 39 points
5 posts
-
1
votes2
answers66
viewsA: The second Store Procedure QUERY does not run... I did not find the bug
Brother, I solved the problem using an ARRAY, check it out! gave it right! <?php $ArrayMenuAtr = array(); $mysqli = new mysqli('localhost', 'loja', 'Pass', 'loja' ); $result =…
phpanswered Josias Viskoo 39 -
-2
votes2
answers66
viewsQ: The second Store Procedure QUERY does not run... I did not find the bug
The second selection of Store Procedure does not run... I did not find the bug... <? require("viskoo_conexao/conectar.php");?> <?php $consulta="CALL SPMenuConsulta"; $resultado =…
phpasked Josias Viskoo 39 -
0
votes2
answers133
viewsA: CSS Animate does not stop at last keyframe
It’s... solved the problem, actually as it was using javascript to animate some parts it gave a small BUG because it removes and adds the CSS class, and this of course would give a bug, but the…
cssanswered Josias Viskoo 39 -
1
votes2
answers133
viewsQ: CSS Animate does not stop at last keyframe
I made a simple animation with keyframe and when running it does not stop at 100% and yes back at the beginning of my CSS animation, see: .mostramenu { animation: desce 2s; -webkit-animation: desce…
cssasked Josias Viskoo 39 -
1
votes1
answer412
viewsQ: How to insert declared CSS with Javascript after scrolling the page
Well, I just wanted to make the javascript function work: var $document = $(document), $element = $('#minhaDiv'), className = '.teste-css'; $document.scroll(function() { if ($document.scrollTop()…