Using javascript or css to animate an element from one position to another.
0
votes
0answers
16 views
ios6 : Crash after launching a video
I'm designing a client-server application that sync and stores files on iOS devices.
Launch of video where OK on iOS<6 but with iOS6 the app crashes and the device returns to the springboard
...
1
vote
0answers
25 views
jQuery Transit issue wordpress
I'm implementing a wordpress plugin and i'm getting this error.
Error message:
"LayerSlider WP: jQuery Transit issue It looks like one of your other
plugins also uses jQuery Transit and ...
0
votes
2answers
31 views
jQuery simple transition issue
I am developing a very simple one-page site here: http://dispose.co/dormstory/pod.html
As you can see I've got the content positioned absolutely, and when you click a link the former content fades ...
0
votes
0answers
13 views
CATransition animation zoom change image (UIImageView)
I try to achieve zooming animation image change on UIImageView.
So far I created a transition of type moveIn and subtype fromLeft:
CATransition *transition = [CATransition animation];
[transition ...
0
votes
0answers
9 views
map highlight.js / hotspot in responsive webdesign
So I am rebuilding a page in my website because my client has asked for a change in transitions for the full page slider. I realized that the old code the old developer used for the maphighlight.js ...
0
votes
2answers
41 views
Need my div dropdown menu to hide text when not hovered
I'm trying to do a dropdown menu with a div. The transition on the div is fine and everything is working great. But I don't know how to get the text that's in the dropdown area do be hidden when I'm ...
1
vote
2answers
42 views
CSS transition fade in only for element
Is there a way to only fade in an element using the CSS transition property? Never really had the need for this before so haven't looked into it, and now I can't seem to find a method of doing so ...
2
votes
4answers
50 views
CSS menu transitions not working
I'm trying to add some transition effects onto my css dropdown menu, but wherever I put the transition code in it doesn't seem to work.
transition: all 2s ease-in;
I'm trying to get the transition ...
1
vote
0answers
35 views
CSS3 animations: transition vs animation
Until recently I have been a fan of transition because of its simplicity - most animations on a site do not require keyframes or translate functions and can be achieved with css properties instead.
...
0
votes
1answer
22 views
JQuery Mobile: data-direction=“reverse” not emulating initial transition
I have a back button in my header that looks like:
<a href="index.html" data-role="button" data-direction="reverse"
data-icon="arrow-l" data-iconpos="left">Back</a>
The transition to ...
0
votes
1answer
102 views
Transition in image slideshow html5
Here I have is what I done for a html5 image slideshow. It works well on my localhost. However i wonder why there isn't any transition within the slideshow. Transition such as fading the first picture ...
0
votes
0answers
34 views
JavaScript transition not working but does in CSS
I'm having problems with transition in Firefox. It works if I put :hover on .cover but if I change the height in JavaScript it doesn't make an animation... Basically it's going to change the height of ...
0
votes
3answers
28 views
Expanding Circle Page Transition
I am experimenting with animations and page transitions.
My current goal is to create a page with 3 circular images which function as navigation buttons. When you click one of them, I want the circle ...
0
votes
0answers
20 views
object allocated on line xxx and stored into 'myOptions' is not referenced later in this execution path and has a retain count +1(object leaked)
(Xcode 4.1) so i created a button (optionsButton) that takes the user to another view (to option.xib) but it crashes after i press it, analyzed and discovered these warnings:
- ...
1
vote
1answer
36 views
Implementing a slide animation in jQuery Mobile triggered by various events
I've implemented a jQuery mobile footer nav with the Html below.
<div data-role="navbar" id="footer-nav">
<ul>
<li><a id="nav1" href="">Nav 1</a></li>
...
0
votes
1answer
22 views
dojo widget; Object [object Object] has no method 'transitionTo'?
i create a div "divNodes0" with dojo.create and want to do a transition like this:
var actualNodeListItem = dijit.registry.byId("divNodes0");
alert(actualNodeListItem);
...
0
votes
1answer
17 views
Smooth transition for lower divs when showing more content higher up
sorry for the title, hard to explain!
I have a gallery section for a website i'm building and each section has a different amount of images inside - when cycling through these (using jquery ui tabs) ...
0
votes
1answer
39 views
Safari unexpectedly randomly glowing during transitions
I've encountered an unexplainable problem with Safari.
I'm using Transit Js Library to use CSS3 transitions with jquery. It actually works but during opacity transitions some elements in the page ...
0
votes
0answers
27 views
Display bottom shadow on fixed header and top shadow on fixed footer only visible on scroll
I have looked on a solution that works quite well for a fixed header displaying a shadow with transition only on scroll.
Is there a way to also insert a similar fixed footer with changes to the CSS ...
0
votes
0answers
25 views
Smooth out rapid javascript-driven position changes with CSS transitions?
I think this is a long shot, but worth asking. I've got something similar to the left menu in many mobile apps (e.g. Facebook), that opens smoothly (in my case, using CSS transitions) when you press ...
0
votes
1answer
33 views
Combine browser selectors with LESS
Is it possible to combine the -webkit, -moz, -o, and -ms selectors into one with LESS?
I tried doing
.transition(@t @d) {
transition:@t @d;
-webkit-transition:@t @d;
-moz-transition:@t ...
0
votes
1answer
20 views
call transition.to with id: corona SDK
In one of my corona apps, I've to apply transition to objects with certain id. How can I do this?
local ball = display.newImage("ball.png")
-- sample, actually there are random no. of balls ...
0
votes
1answer
28 views
css3 columns + responsive layouts: animate item position changes.using css3 or jquery/javascript
I'm creating a masonry style layout but with css3 for the columns instead as it allowed me to build the layout with greater ease and much more precisely, especially since I'm building a responsive ...
0
votes
1answer
28 views
image transition with javascript
Can anyone suggest a lightweight fading image transition for javascript or jquery. I'm thinking something along the lines of this:
document.getElementById("foo").src="images/robin.jpg";
where the ...
1
vote
2answers
89 views
How to transition 2 divs at the same time?
I'm trying to make an animated menu that when I hover over it , the background (or image) reduces and at the same time the text expands.
Thats my style sheet :
.menus {
float: left;
...
0
votes
0answers
9 views
does the dojo transitionIn Eventhandler not reconise transitions into dynamic generated divs?
i am generating some divs dynamic (depends on what link is clicked).
i have a transitionIn listener for this automatic generated div, but it is not fired when the automatic generated div is shown.
...
-4
votes
1answer
73 views
Page Transition Effect, AJAX / PHP / jQuery [closed]
i need some help to finish my new website. At the moment i have static .html files for every site. I want to have it a little bit smarter. I don't want to use jQuery load because i don't want to lose ...
0
votes
0answers
31 views
twitter-bootstrap code - what is this used for?
In the hide method of both the bootstrap modal and bootstrap tooltips,
there are the statements:
e = $.Event('hide');
this.$element.trigger(e);
and then after that it has code to do the actual ...
0
votes
0answers
32 views
CSS transition out causing errors
I have various transition effects on mouseover, such as changing image opacity. However I want a smooth transition when the mouse is moved off the item, and so I added transition code to the normal ...
0
votes
2answers
32 views
jquery.transit hover not working
I am trying to create a basic hover effect using jquery.transit.
When the cursor hovers over one of my icons, I want that icon to scale up 100%, and then reduce 100% when the cursor moves away.
...
0
votes
2answers
39 views
Corona storyboard.gotoScene options not working
I'm using a simple line of code in Corona to transition between scenes - the transition happens but the effect doesn't.
storyboard.gotoScene( "splash", "fade", 2000 )
I've compiled the build for ...
1
vote
4answers
70 views
How to make page transition
I am making a website and I want to make it so that if you click on a button at the bottom of the page you go to a new .html file with a different layout, but I want it to look like that new page is ...
0
votes
1answer
63 views
On mouse over change transition
Here i am implementing an Image slider
My problem is when i hover my image slider i want to stop my css transition property.
I tried using addclass and removeclass but failed
Here is my code
HTML
...
1
vote
0answers
38 views
Transition with alpha mask
I'd like to create a transition between two view controllers with this method:
-(void)animate {
UIImage *maskingImage = [UIImage imageNamed:@"mask.png"];
CALayer *maskLayer =[CALayer ...
1
vote
1answer
53 views
CSS transition & animation to active at same time
http://jsfiddle.net/bryank/YPxb5/
#spacer{
position:fixed;
top:11px;
left:200px;
height:79px;
width:155px;
background-color:#fff;
}
#spacer:active{
-webkit-animation: click .1s 1;
...
1
vote
2answers
96 views
How to trigger animation after user scroll to N points - jQuery waypoints with multiple animation .animate()
I need your help!
Basic idea: I want when user scroll to one point (in the middle of the pages - let say it's 500px from top) then we have some animation, of course I won't ask how to do all the ...
0
votes
1answer
40 views
webkit transitions not working in chrome and safari
I'm having trouble getting a transition to work in webkit browsers, while it works perfectly in firefox. My code is below
HTML
<div class="dropdown" data-id="new-houses">
<h3>New ...
2
votes
1answer
45 views
How to move object into the screen from outside via jQuery transition
I want to create a test object that enters the screen from the left upon page load using jQuery.
I have placed:
<script type='text/javascript'>
$('animtext').transition({ x: 200 }, 500, ...
0
votes
1answer
24 views
Why is strange CSS Background image transition happening?
I ran into an interesting thing in chrome today. I had a transition set to change between 2 background images, and it works, but with interesting results. I made a pen to illustrate the issue:
...
0
votes
0answers
23 views
HTML5: Switching videos with transition
I am trying to switch between different videos, with a transition if possible, by using a keyboard or mouse command. Basically I have three videos. One will have to loop and on some user interaction ...
0
votes
1answer
40 views
D3 how to make dynamic sequential transitions work using transform/translate and offset coordinates?
I am trying to create an interactive org chart such that when I click on a box that box is repositioned in the centre of the SVG container and all other elements transition as well but remain in the ...
1
vote
2answers
25 views
How to make a div a link as it transitions in CSS
I have a website template I'm working on http://www.travenwest.com/projects/dev2 and I have a problem with the expanding boxes on the left (those are one of my multiple problems, at least). I want ...
0
votes
1answer
91 views
Weird Transition Behaviour in IE10 Metro Mode Only
I've written the following that handles animation for a lightbox event:
obj.css({
'transition':'transform 0.2s linear 0s',
'transform':'perspective(1000px) rotateX(5deg) rotateY(0deg) rotate(10deg) ...
1
vote
2answers
63 views
Control transition with JavaScript
I have made a drop down menu with CSS using the #nav:hover selector to activate the property and value transition:height
http://jsfiddle.net/bryank/WXAcm/
What I really want to happen:
when user ...
0
votes
1answer
37 views
How to combine multiple transitions with jQuery?
I would like to create an effect using CSS3 transitions. A div should change its width and background-color on mouseover. Then on mouseout it should wait 2 seconds and then go back to its normal width ...
0
votes
1answer
44 views
Safari webkit transition flicker
I am experiencing flickering when fading in elements using webkit transition opacity.
The issue only occurs in Safari but it is really glitchy.
I have tried -webkit-backface-visibility: hidden; ...
1
vote
0answers
48 views
Receiving elements position in the middle of CSS transition
I need to receive the elements left and top property in the middle of the CSS transition. Currently I use jQuery position method and it seem to be working to some point.
I have made 2 examples to ...
2
votes
1answer
80 views
circle radius not updating on transition in d3
I am having trouble with a transtion in d3. This jsfiddle illustrates the problem: http://jsfiddle.net/3bzsE/
When the page loads, dataset01 is used to create a circle for each person in the array. ...
0
votes
1answer
72 views
Get css transition start from jQuery
I am currently trying to bind an event on a transition start.
The animation consists on a textarea resizing on focus.
For transition end we know that we have:
jQuery(this).bind("transitionend ...
0
votes
0answers
20 views
Developing a State Machine - Handling Multiple Outcomes Per State
So I'm trying to develop a simple state machine for a game I'm making, and I'd like to start off the Character Controller with the basics. I'm just confused on how to handle transitions from one ...



