-
Posts
114 -
Joined
-
Last visited
About mimeartist

- Birthday 06/05/1975
Contact Methods
- Personal Website
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
4,231 profile views
mimeartist's Achievements
Recent Badges
23
Reputation
-
I'd say Twitter is more your problem than NFTs
-
mimeartist started following SplitText Chrome Weirdness , NFTs , Speed Enquiry and 3 others
-
I've started created NFT artworks, mainly through procreate as it's nice to get away from coding ocassionally. https://www.hicetnunc.xyz/tz/tz1ZsNvZKUveN7FjRhMHTm9NiAUNAmrwdFKV However, they're now allowing HTML NFTs so I'm looking to create some interative pieces, just enquiring, does anyone here have any experience in creating them, and if I wasnt allowed to link to external libraries, as a business user am I allowed to include the code within my NFT? This is all very new, so I'm just enquiring before just going ahead and doing stuff.
-
Thank you both, I have quite a few items on screen, so figured saving a few milliseconds on each might make things even smoother... it's smooth on my 5 year old iMac so not to bothered... but it's nice to get it as trim as possbile before launch rather than after So just to confirm - it's fine to use the id then class, and right to left is unlikely to make much differnce?
-
Just trying to squeeze the last drop of speed out a project... Reading up on CSS speed checks, I was surprised to read https://css-tricks.com/efficiently-rendering-css/ that in CSS you put the class before the ID as it renders right to left, I'd imagine this is not as important as it once was - However thought I'd ask... which is the quickest way to animate a class with an ID div... Is it (as I use presently) gsap.to('#circle_logo .roundTextShadow',theSpeed, { 'fill':theTextColor}); or is it, as per CSS in the document, gsap.to(' .roundTextShadow #circle_logo',theSpeed, { 'fill':theTextColor}); I imagine GSAP is doing all it can to speed things up, so just wondered out of interest whether this is something I should be considering
-
This is perfect, thank you Zach, i was trying to make sure this would work with ipad etc. and it seems to, that's why I was tying it in with draggable, so you could distinguish between dragging and clicking.
-
hmm... i think had the trigger the wrong way around? so have updated that, but how do i get the attriubutes of what I've clicked on?
-
Hello, I'm trying to make it so that when any item in a DIV is dragged, the whole parent DIV moves, but if just an item is clicked then it performs the click. I've made a codepen, but even the dragging is not working (it is in my real work) The issue I have is that when the user clicks I want to get the attribute of the child item they've clicked on, even though I'm using trigger to make the parent draggable - I'm not sure why even the draggable isn't working in the codepen, other than perhaps my approach is all wrong... any ideas?
-
Thank you Craig, this is perfect!
-
Hi, I'm using multiple text shadows, but am stuck on how to change the color of them all simply - Does textShadowColor not work for them all? Or should I try a different method?
-
I was trying to target an href inside a div that has a load of other stuff so though It was easier to do it that way - however just figured a way to target it directly - thanks for all your help - not always keen to just try a different way and give up route, but that is kind of what i did anyway
-
https://codepen.io/mimeArtist/pen/LYpMVzx I created a codepen, but of course it works there
-
Hi, I'm getting a DOMException when trying to use CCSRules - my code is below... I originally thought perhaps it was because my gsap files were on an external CDN so bought them in locally - but still getting this error - CSSRulePlugin.min.js:10 DOMException: Failed to read the 'cssRules' property from 'CSSStyleSheet': Cannot access rules iconRule = CSSRulePlugin.getRule(".hover_icon:hover"); //get the rule gsap.to(iconRule, {duration: 3, cssRule: {color: "#ff00ff"}}); buttonRule = CSSRulePlugin.getRule(".hover_button:hover"); //get the rule gsap.to(buttonRule, {duration: 3, cssRule: {color: "#ffff00"}});
-
Thanks again - Got it working at https://l-o.st
-
Thanks Zach you're a life saver!, I was going to track the positions of some stuff - but not needed, and forgot it was there, was wasting my time messing around with the CSS instead, thanks again! Also my bold and italics styling is working properly now
-
Hello, When using splitText with chrome I'm finding that from the second line in a paragraph, everything indents by 6 pixels - This is only happening on Chrome, not Safari or Firefox - Any ideas? I can see in the code it's using soft hyphens in places, and wondering if that is causing the issue somewhere. Thanks! James