Click here to Skip to main content
15,888,816 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:41
mveRichard Deeming8-Feb-18 1:41 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:43
User 98970748-Feb-18 1:43 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:45
mveRichard Deeming8-Feb-18 1:45 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:48
User 98970748-Feb-18 1:48 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 2:01
mveRichard Deeming8-Feb-18 2:01 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 2:06
User 98970748-Feb-18 2:06 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 2:31
mveRichard Deeming8-Feb-18 2:31 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 2:42
User 98970748-Feb-18 2:42 
the demo you show is working..i am using Chrome..i do not know how to see the errors in the console...
the image is inside a group of elements frame and i am animating the images with this code:

HTML
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#WE21c6b55f75:hover {
  animation: shake 0.6s;
}

@keyframes shake {
 100% { transform: translate(0px, 0px) rotate(360deg); }
}
</style>
</head>
<body>
</body>
</html>


and the group of elements with this one:

HTML
<script> 
$(document).ready(function(){
    $("div").mouseenter(function(){
        $("#WEdeade99e88").animate({
			top:"20px"
        });
		$("#WE427d1fab8f").animate({
			top: "5px"
        });
		   $("#WEcee0bb0ded").animate({
			top: "210px"
        });
		$("#WEa1d10f7aea").animate({
			top: "200px"
        });
		   $("#WEd710230262").animate({
			top: "200px"
        });
    });
});

</script> 


modified 7-Jan-19 21:02pm.

GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 3:00
mveRichard Deeming8-Feb-18 3:00 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 3:06
User 98970748-Feb-18 3:06 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 3:21
mveRichard Deeming8-Feb-18 3:21 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 3:24
User 98970748-Feb-18 3:24 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 3:31
mveRichard Deeming8-Feb-18 3:31 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 3:33
User 98970748-Feb-18 3:33 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 2:46
User 98970748-Feb-18 2:46 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 0:38
User 98970748-Feb-18 0:38 
QuestionGeneral Question: What is the most common approach currently for building a website with database. Pin
Member 1338756828-Jan-18 7:07
Member 1338756828-Jan-18 7:07 
GeneralRe: General Question: What is the most common approach currently for building a website with database. Pin
PIEBALDconsult28-Jan-18 7:27
mvePIEBALDconsult28-Jan-18 7:27 
GeneralRe: General Question: What is the most common approach currently for building a website with database. Pin
Member 1338756828-Jan-18 7:47
Member 1338756828-Jan-18 7:47 
AnswerRe: General Question: What is the most common approach currently for building a website with database. Pin
#realJSOP28-Jan-18 9:16
mve#realJSOP28-Jan-18 9:16 
QuestionFonts Will Not Display As Intended Using @font-face in CSS. Pin
Member 1364829928-Jan-18 5:04
Member 1364829928-Jan-18 5:04 
AnswerRe: Fonts Will Not Display As Intended Using @font-face in CSS. Pin
luplup29-Jan-18 1:26
luplup29-Jan-18 1:26 
QuestionMVC5 Slow File Upload Pin
#realJSOP26-Jan-18 9:27
mve#realJSOP26-Jan-18 9:27 
AnswerRe: MVC5 Slow File Upload Pin
malkovich19887-May-19 3:22
malkovich19887-May-19 3:22 
GeneralRe: MVC5 Slow File Upload Pin
#realJSOP7-May-19 4:03
mve#realJSOP7-May-19 4:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.