Posts by Arthur74 • 187 points
21 posts
-
0
votes2
answers195
viewsA: Manipulating CSS Property with Javascript
Upshot: var elemento = document.getElementById("menu_global2"); var propriedade = window.getComputedStyle(elemento).getPropertyValue("width"); if (propriedade == "170px"){ //alert("teste");…
-
1
votes2
answers195
viewsQ: Manipulating CSS Property with Javascript
I need to insert a WIDTH worthwhile 140px in the following CSS class: #menu_global2 ul li .icon_menuG The intention is to read the size of my width #menu_global2 and then apply changes to the CSS. I…
-
0
votes1
answer111
views -
1
votes2
answers889
views -
1
votes2
answers66
viewsQ: Event with onclick
I am styling an input/search field using the onclick of javascript, I can do 50% but the rest I’m cracking my head and I don’t know what to do. I was able to make the text input box to make the…
-
0
votes0
answers305
viewsQ: Owl.Carousel action of the NAV buttons
Duplicate gallery of Owl.Carousel makes it Nav custom move the amount of galleries instead of 1 position at a time. To Nav Standard works normally running 1 in 1 position. On the personalized Nav…
-
0
votes1
answer145
viewsQ: Jquery Javascript tab system
I have a system with tabs on JS/Jquery, that to unite with the Owl.Carousel he gives a bug a bit strange, I’ve tried everything to fix the error and do not understand what may be causing the…
-
1
votes1
answer277
viewsQ: Assign NAV command on buttons - Owl.Carousel
I would like to understand how I pull the NAV command from Owl.Carousel for my buttons already stylized in a separate div. Example: Sample code: $(document).ready(function(){…
-
1
votes1
answer691
viewsQ: How to change the position of Owl-Nav in Owl.Carousel
I’m using Owl.Carousel and I’m breaking my head with the positioning of the NAV arrows, I need that instead of being below the articles it stay above.…
-
1
votes1
answer858
viewsQ: Move Scroll with Buttons
I need to move a horizontal scroll with buttons. I have a horizontal gallery with horizontal scroll, and I need to click the buttons in the upper right corner "next/previous" the scroll move to the…
-
0
votes1
answer199
viewsQ: Touch/click and drag effect
I have a gallery with horizontal scroll, I wonder if it is possible to put a click and drag to move the scroll, as if it were a touch dragging with the mouse. Obs: the images will have link. my…
-
0
votes2
answers45
viewsQ: How to use data from another site via LINK/ID
I need to know how it is possible for me to fill out data on my site with data from another site. Ex: My site has the fields ('Title, Image, Tracks.') And there’s a site with a database with the…
-
0
votes1
answer40
viewsQ: Menu Javascript Getid
I have a menu that has a hoverline effect ("a line that runs down the clicked element!") with Javascript, but it is created using getId by pulling the element ID. The challenge is to duplicate the…
-
0
votes1
answer343
viewsQ: Duplicate <div> without duplicating Javascript
I need the following help: I managed to join two codes I found on the internet, and edited the formatting to my liking. I have a gallery with images and overflow horizontal, my code works, but I…
-
1
votes1
answer33
viewsA: effect on attr. ('Javascript style
I resolved so: $('#backstatic').attr('style', 'filter: grayscale(100%);transition: 2s'); I found that adding the transition style of css3 also works! then where is 'Transition:' the '2s' is the…
-
0
votes1
answer33
viewsQ: effect on attr. ('Javascript style
I need to run this 'Grayscale' filter gradually, which will apply gradually over a period of time. $('#backstatic').attr('style', 'filter: grayscale(100%)'); this is my line, I wonder if you have…
-
1
votes1
answer108
viewsQ: Scroll action in javascript
My project is to make an animation in a logo using a css effect of the Animate.css library, the animation will occur at a certain point in the scroll of the site. I managed to do something, but…
-
0
votes1
answer38
viewsQ: Run event only if another event has already been run
I have two listeners for the event scroll and I need the second to be executed only if the first has already been executed previously, just once, until the first event runs again. For example, I…
-
0
votes1
answer166
viewsQ: event with javascript scroll
I have the code below creating the fadein and fadeout effect with the Animate.css library in a scroll event, but when the event occurs applying fadeOut, it reappears until it moves the scroll, and…
-
0
votes2
answers2147
viewsA: Zoom effect with CSS
I resolved so: * { margin: 0; padding: 0; border: 0; } body { font-family: "Open Sans", sans-serif; } ul, ol, li { list-style: none; } .imagem { background: #ddd; width: 14%; height: auto; display:…
-
5
votes2
answers2147
viewsQ: Zoom effect with CSS
I have a div with an image in which I applied a zoom effect and a slight rotation! but this image must zoom and rotate within the limits of the DIV without overflowing but hide the parts that exceed…