- This topic is empty.
-
AuthorPosts
-
May 9, 2014 at 5:28 am #169603
bmoneruiux
ParticipantI was able to create an awesome layered SVG with jQuery animations and CSS. However now implementing it into my soon-to-be WordPress site…I have no idea how to actually implement it. i’ve been searching the web and while I’ve found ways to display the svg…my animations and color changes are still waiting in the mist somewhere.
Here’s my CodePen where the technique works flawlessly.
Here’s the beginnings of my Website that’s just…static.
I’m using the Responsive theme, and have implemented it into the header.php of my child theme like this:
<div id="logo"> <a href="<?php echo home_url( '/' ); ?>"><object type="image/svg+xml" data="<?php echo get_bloginfo( 'stylesheet_directory' ) ?>/core/images/bm-logo.svg"></object></a> </div><!-- end of #logo -->
I’ve implemented the CSS into my child theme’s css file, and the script…well I’m not sure WHERE to put that currently although I’ve tried a number of places already.
What am I missing? Any help will be appreciated.
May 9, 2014 at 5:30 am #169604bmoneruiux
Participant…and for some reason I can’t click on it anymore either…hmmm
May 9, 2014 at 9:28 am #169618Paulie_D
MemberIs using
<object>
the optimum method here?May 9, 2014 at 9:37 am #169621shaneisme
ParticipantYeah – try just dumping the SVG code right in.
May 9, 2014 at 11:30 am #169650bmoneruiux
ParticipantOk I’ll try that. Last time I did that, nothing wanted to show up. Am I supposed to be adding the <doctype> tag that’s in it also?
May 9, 2014 at 2:21 pm #169673shaneisme
ParticipantNo, doctype should only be declared at the top of your document. You want everything from
<svg>
to</svg>
.May 9, 2014 at 5:08 pm #169678bmoneruiux
ParticipantOk! Yay! I can finally click on it again!
Now how do you suggest I implement the jQuery script I have? Just slap it between some script tags, or is there a more elegant solution?
FYI – I’m new to using SVG’s in an actual web design, and am still learning jQuery.
May 9, 2014 at 7:32 pm #169681shaneisme
ParticipantMost people use Google’s hosted version:
https://developers.google.com/speed/libraries/devguide#jquery
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
May 10, 2014 at 3:51 am #169696bmoneruiux
ParticipantNo that’s not my problem. I always use Google versions of everything when I can. I definitely have jQuery in the site.
My problem is that I’ve placed the link to the js file right below the closing div of the footer:
<script src="<?php echo get_bloginfo( 'stylesheet_directory' ) ?>/core/js/logo-animation.min.js"></script>
Yet the logo still isn’t performing the .hover animation like in my CodePen.
Am I missing some crucial step somewhere?
May 10, 2014 at 3:58 am #169699chrisburton
Participant@TheDoc Why was @shaneisme’s comment listed as inappropriate?
May 10, 2014 at 4:01 am #169700bmoneruiux
ParticipantI didn’t even notice that. For the record, wasn’t me lol.
May 10, 2014 at 4:06 am #169701chrisburton
Participant@ctvonline @psionicsin Check your console errors. There seems to be a conflict. Instead of using
$
, swap that with the wordjQuery
.So it should look like this:
jQuery('.bm-logo').hover( function ($) { $('.logo-square, .logo-bg').attr('fill', '#b565a7 '); $('.logo-square').css({ '-webkit-transform': 'scale(0.6)', '-moz-transform': 'scale(0.6)', '-o-transform': 'scale(0.6)' }); }, function ($) { $('.logo-square, .logo-bg').attr('fill', '#404040 '); $('.logo-square').css({ '-webkit-transform': 'scale(1)', '-moz-transform': 'scale(1)', '-o-transform': 'scale(1)' }); } );
May 10, 2014 at 4:22 am #169702chrisburton
ParticipantAlso, your code is very messy. You have divs in your head section along with style tags between script tags. Style tags should come before script tags. And divs do not belong inside the head section, it belongs in the body.
May 10, 2014 at 4:28 am #169703bmoneruiux
ParticipantI tried your recommendation, and it’s still not working.
And it’s not my code, but the themes code. They apparently have a single DIV in there for a fluid width background video wrapper. I can ask the theme creators on why that’s in there though, they usually get back ASAP. I’ll agree that’s an unusual spot for it.
But back to the topic, changed
$
tojQuery
and still getting the same result but with a newer error in the console log.Uncaught TypeError: undefined is not a function logo-animation.min.js:1 event.returnValue is deprecated. Please use the standard event.preventDefault() instead. 4 Uncaught TypeError: undefined is not a function
May 10, 2014 at 4:40 am #169704chrisburton
Participant@psionicsin What about this:
jQuery('.bm-logo').hover( function () { jQuery('.logo-square, .logo-bg').attr('fill', '#b565a7 '); jQuery('.logo-square').css({ '-webkit-transform': 'scale(0.6)', '-moz-transform': 'scale(0.6)', '-o-transform': 'scale(0.6)' }); }, function () { jQuery('.logo-square, .logo-bg').attr('fill', '#404040 '); jQuery('.logo-square').css({ '-webkit-transform': 'scale(1)', '-moz-transform': 'scale(1)', '-o-transform': 'scale(1)' }); } );
-
AuthorPosts
- The forum ‘Back End’ is closed to new topics and replies.