CarlRosell
-
How to increase or decrease increment speed in javascript?
in that case you could only change the setInterval number to a smaller number than 100.
-
[Tumblr] Masonry + Infinite Scrolling! What am I doing wrong?
it looks like the a href is correct but then then you try to load the images the img src gets an extra h before http:// that's what causing the problem.
-
Css scrolling div problem
and then he detects the scrolling event and call that function every time. jQuery(window).scroll(function() { scrollBanner(); }); hope that was helpful.
-
Css scrolling div problem
by looking in his code this is what drives the animation. /////////////////////////////// // Parallax /////////////////////////////// // Calcualte the home banner parallax scrolling function scrollBanner() { //Get the scoll position of the p…
-
Round avatars not looking good in Safari
hi again. i think the problem is that you trying to apply all those things on the image itself. i use to put round images inside a div and then style the div itself. this might be a simple fix.
-
Create a multiplayer word game
the easiest way of doing this is by node.js and then a Websocket. my suggestion is socket.io. there are several good tutorials on how to create chatrooms with socket.io. and then just modify it for your needs.
-
Tabs - mark active and animation
first off you need a class with the name .active and then do something with it so you can see if its really active. .active{ color:red; } then just remove the :first and parent() from your click function. you want to remove every class active a…
-
Awkward effect on the navbar while scrolling
there are two things i see. the first is that the nav has multiple backgrounds, the nav itself has a background and then the ul has the same background. the other thing is hard to tell but if you remove the flexslider the flickering of the nav is no…
-
Small JS bump needed
the only thing i could see was an extra . infront of backstretch. it sould be $(window).on("backstretch.show" as it is now you are listening for the wrong event. hope that helped. i have no way to test if that's working, but let me…
-
Issue postioning Nav menu
you could use a media query and change the css when the menu overlaps. @media all and (max-width:700px){ //your new css when the website is smaller than 700px. //you don't have to recreate all your css here. just the css that you want to chang…
-
Small JS bump needed
Okay sorry. didnt read the question that well. can you post some screenshots or a codepen so i can se what the exact problem is? :)
-
How to make header height change when scrolling
if you check that engage.js with your debugger you will find a triggerpoint set to about 65px. and then a listener for scroll events. if the scroll is higher than the triggerpoint the css for the nav is changed. hope i didnt confuse you too much!
-
How to make header height change when scrolling
take a look att the scrollMonitor plugin. might find some cool answers.
-
Small JS bump needed
i dont think that you can use the .on event here. if you go to there homepage there is a section for using on block level elements. here is that code $("#letterbox").backstretch("path to your image");
-
css help with dynamic image size
you could do something like This... that example will set the width of the outer box by checking the .image class inside of it.
-
load a function on page load
you can look for when the document is ready: $(document).ready(function() { //your javascript here... } or you can do it by calling onload on the body and then your javascript function. you seem to be missing the "" and the () when you …
-
CSS mac style defaults on windows computer
If you style your elements, the default style is dismissed. So just style a element to look like the default on Mac and that will be displayed the same on windows.
-
CSS3 Transition moving whole website down
Maybe this post will help. http://css-tricks.com/forums/discussion/comment/88616#Comment_88616 if not please give some examples of the effect you want to achieve.
-
Change line of text every few seconds?
You can also use animations and animate diffrent paragraphs opacity between 0 to 1.
-
Tabbed navigation with CSS transitions
Use the adjacent sibling selector to toggle the other div. #div1:hover + #div2 { //what should happen when hover. } the div1 is the text. this doesnt have to be a div. and then after the + the div you want to effect. http://jsfiddle.net/6BfR6/307/
-
Width problems on mobile site
I think the big empty area on the right is because you have overflowing elements (the search-field) . if you put overflow:hidden; on the pagewrap with a width of 100% you should get rid of that problem.