Questions tagged as 'rolamento'

1
answer

Create an animation effect that executes only once, after a certain bearing height

I'm trying to create an animation for a div after the scroll is larger than a value (in my case, 1100). It works to a certain extent, but after it reaches 1100, every time it moves on the scroll, this effect runs again. Here's my code: &...
asked by 12.12.2014 / 13:53
2
answers

Scroll element of the DataGrid class WPF C #

I have a function that creates a grid, and I needed to know the value of the scroll of this grid, so I can trigger an event when it reaches the bottom of the page. But I do not know how to get those values, the function is down here: using Sys...
asked by 05.07.2018 / 21:25
0
answers

Embed pdf document and activate scroll to submit

Good morning, I would like to embed a pdf document on my site for a PHP registration form, where after pulling the scroll to the end of the pdf, the submit button is activated. Here's the code, I'm using jquery to fetch the scrool state, but I c...
asked by 22.01.2018 / 12:43
1
answer

Smooth scrolling in div content

I have a script that does a smooth scrolling when clicking on the link with anchor. The problem is that it scrolls the whole page. I need it to scroll only the content that is within a specific div and the rest of the page remain fixed. C...
asked by 18.11.2017 / 22:17
1
answer

TableRow added via program is not bringing all fields!

I'm trying to make a ScrollView - TableLayout - TableRow via program, but using an XML Layout as the basis of the internal data of TableRows. It happens that whenever I try to add the text of the last field (message) of this layout or...
asked by 05.01.2016 / 18:56
1
answer

Triggering a .scroll method on the mobile device

I'm trying to use the .scroll method of Jquery as follows, when the user scrolls the scroll any change will happen. $(window).scroll(function() { $('.exemplo').css('color', 'red'); }) .exemplo { height: 250px; width: 500px; }...
asked by 28.12.2015 / 21:21
1
answer

How to stop $ (window) .scroll in an on-demand query

I make an on-demand query on my page, I bring the information from the database as the user uses the scroll. $(window).scroll(function(evento){ evento.preventDefault(); var init = $(".canal .lista ul#dem").length; carregar(init + 1...
asked by 17.07.2015 / 22:33
3
answers

How to hide ScrollBar but not disable it

I would like to know if you have to disable the ScrollBar without disabling it, ie hide the ScrollBar but leave it working normally, as if it had the show.     
asked by 26.09.2014 / 02:41
1
answer

Hiding / Showing a navbar according to scrolling

Next, I have this code: // Function that hides / shows subnavbar according to scrolling $('#view-2').scroll(function() { var topo = $(this).scrollTop(); // = 0 if (topo > 0){ $('.subnavbar').fadeOut(); } else { $(...
asked by 28.09.2018 / 18:31
1
answer

How to trigger this progress bar?

I started to study JavaScript and jQuery, and looking for how to make a vertical progress bar I found the function below: It worked perfectly as I wanted, but I'd like to know how I can get the bars to run (start loading) only when I scroll a...
asked by 21.06.2018 / 08:00