Jump to content
Search Community

cleveradvertising

Members
  • Posts

    44
  • Joined

  • Last visited

Everything posted by cleveradvertising

  1. Hello, I have a problem with a draggable fluid. The codpen demo is http://codepen.io/cleveradvertising/pen/qqBNJE What i want its when i move the box to up or down and when i drag he continuation the animation smoth and fluid, but now have a litle spike. Someone can help me? Thanks
  2. Yes that what you said. I want create a Scroll Elastic when you drag he continues slow and stop.
  3. hello, i try find in forum bud i didn't find how i can do when touch move scroll down or up and when drag the scroll he continuations with animation. Like this animations. what happen when drag the object. http://codepen.io/osublake/pen/9b67c34586f62058091ed16829c58ed5?editors=0010 Thanks.
  4. Hello, how i can put one div with scroll inside a drag block and select text inside this block and drag is off. Thanks.
  5. thank you very much but I got solution. i have now other problem when i drag the block for snap to next i need drag to mutch how i can change this?
  6. Hello, some one can help me with the problem? When i start a draggable in one object, this object stay fixed and i want change the target to set the animation top or down drag in the other object is in overflow. It is possible do this? Thanks.
  7. I want when you try drag the block to bottom, the block u pick stay fixed, and the other block coming from top.
  8. No, this codepen don't have full animations, like scroll or drag and drop. The code still in here but doesn't work every actions. Can i send you the link of my website demo i work and you can see all the actions/animations?
  9. I have now the codepen. http://codepen.io/cleveradvertising/pen/qqBNJE and i have the my project test online if you want i can pass to you the link.
  10. I've been and I'm looking for something like what I want, I think it better to make a demo and so is easier to see what I want.
  11. I'll see if I can find what I want. Thank you. What really want is when I make a "draggable" top down a different element move. Basically the element I click stay fixed, and the animations are applied to the element above. This is something very specific, it is the only task remaining to finish my project. If you want I can create a codepen demo for you to check out better what I need. Thanks for your helping.
  12. Sorry but you can tell me some example, how to control a draggable but move other objects? Thanks.
  13. Ok i will create a simple demo with i have html css and js. because it hard for you understand what i want to do. Thanks
  14. Hello, i have a problem with some action i needed to my website. So, what i want its i can control the direction of draggable only to down and when i try move drag to top the section "div" doesn't move just lock. But this action work in first ".post", because i have a list and i have first and last, and when the first just drag to down and last just drag to top. I have this code. If some one can help me with this problem i appreciate. Thanks. var $post = $(".post"); var boxHeight = $(window).height(); var animation = TweenMax.to(".post", { scrollTo: {y: "+=" + boxHeight}, ease: Power4.easeInOut, }); Draggable.create(".post", { type:"y", cursor: "grab", throwProps:true, edgeResistance:0.7, dragResistance:0.3, maxDuration : 0.6, minDuration : 0.4, dragClickables:true, zIndexBoost:false, onClick:function() { console.log("Click"); TweenLite.set(".post",{cursor:"grabbing"}); }, onDragStart:function() { TweenLite.set(".post",{cursor:"grabbing"}); console.log("drag start"); }, onDragEnd:function() { console.log("drag ended"); }, onDrag: updateProgress, onThrowUpdate: updateProgress, snap: { y: snapY } }); function snapY(y) { return Math.round(y / boxHeight) * boxHeight; } function updateProgress() { // var norm = normalize(this.x, xMin, xMax); var postfst = $(".post.active").attr('id'); animation.progress(this.y / boxHeight); } *i cant put the full project in codepen
  15. Do you know if exist some like this you tell me, but only move the all section block transition, without de waves? And the section open to right and left? Thanks
  16. Hello, I wonder how can I do something like this site http://jetlag.photos/ Any suggestions where do I begin? I just need the draggable animations snap with simple scroll. Thank you.
  17. Hello, I need help to recreate this type of scroll and draggable and snap like this site http://jetlag.photos/ If some one have any ideias how to do, some codes or files with this similar scroll and draggable snap effect. Thanks.
×
×
  • Create New...