Stop AddThis buttons from sliding into place - addthis

I am using the AddThis Sharing Sidebar.
Every time a page loads, the sidebar slides into position from the center of the screen.
How can I stop this sliding animation?
I just want the Sharing Sidebar on the side of my page, without any sliding animation.

Did you try removing the css classes addthis-animated and/or slideInLeft from the div tag with id at4-share ?

Related

How can I disable a arrow button at the last slide of a carousel

->Am the new learner of SAPUI5,am trying image popup with carousel,Now How can I disable a arrow button at the last slide of a carousel(No limit of images)?Thank you..
If you are using sap.m.Carousel, there is a property loop which indicates if there will be a loop in the images of the Carousel.
Defines whether the carousel should loop, i.e show the first page after the last page is reached and vice versa.
Link:
https://sapui5.hana.ondemand.com/sdk/explored.html#/entity/sap.m.Carousel/properties
If you set the "loop" property of Carousel control to false, you will not see arrow icons at the beginning to left and at the end of the image set to the right.
Here is a carousel with loop set to true to display arrows always
<Carousel id="mockupCarousel" loop="true" items="{ProjectMockups}">
And this will hide arrows for the first slide and for the last slide image
<Carousel id="mockupCarousel" loop="false" items="{ProjectMockups}">

How to implement the half page scroll functionality

On Mouse scroll event in Facebook, How some portion of page is not scrolling, while other part going down?
You can do that in the CSS file, just by adding position:fixed; to the class you want to fix. http://www.w3schools.com/Css/css_positioning.asp

How to have a popup scrolling in the same way that others elements?

I can not solve my problem. As example, my website : www.mananaseguro.com.
In the home page, I have some popup appearing just under movies's poster (when the mouse is over the poster). But when I scroll UP (for example), the popup will not appear just under the poster. Their is a space between them. I tried to add the popup to the home's page panel but it did not succeed.
So is it possible to simulate the good popup behavior? (the popup must stay under the poster).
Or more precisely, is it possible to attach a DecoratedPopupPanel to another panel inside the page in order to have the popup scrolling in the same way that others elements?
Try using the PopupPanel#showRelativeTo() method.
You can achive good popup behavior by using below property.
popup.setPopupPosition(left, top)
Pass movie image x and y index position in top and left. and make consistent look and fill.

Issue when using position: fixed for toolbar in iOS 5 (iPad and iPhone)

There's an issue when accessing my website (http://www.zero11arquitetura.com.br) on iPad or iPhone with iOS 5 that I canĀ“t fix. When window is scrolled thru code every position:fixed elements click event stop working. Can you please help me ?
This site structure uses a top menu div and a header div with position: fixed css. When user clicks on a menu item window scrolls horizontally until it reaches its target.
Clicking in the menu item is done by jQuery click method on each img tag and scrolling is done by jQuery animate method ($("html:not(:animated),body").animate({ scrollLeft: varDestino }, 1500);)
When page is loaded the menu works just as I intended but, after it scrolls thru menu, and I try to click on another menu item nothing happens. The strangest thing is that everything works again when user manually scrolls the window (by finger).
It looks like that by changing window scroll position by code (jQuery calls window.scroll) fixed elements lost its clickable position references.
Is there any workaround for this ?
Thanks,
I've solved this with a trick. I've created invisible divs over the menu items that changes it's position when page scrolls (simulating afixed element over the real position: fixed menu items). When user clicks or hover over those invisble divs the real ones are called

gwt flowpanel automatically show the bottm of the panel not the top

I have couple FlowPanels related like pages in a book, when i click the 'next' button it will go to the next page, which is flowPanel too. on one of the page, it have lots of widgets, from previous page to this page, it always goes to the bottom of the page not the top. how can i make it show the top of the page instead? thanks.
If you mean scrolling to the top of the browser window, take a look at Window.scrollTo()