Originally posted by NickFitz
View Post
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
test please delete
Collapse
This is a sticky topic.
X
X
Collapse
-
Where are we going? And what’s with this hand basket? -
Comment
-
Originally posted by voodooflux View PostMy hernia op has been brought forwardWhere are we going? And what’s with this hand basket?Comment
-
Originally posted by voodooflux View PostI was facing an 18 week wait, but there was a cancellation so I've been offered that place.Where are we going? And what’s with this hand basket?Comment
-
-
Originally posted by voodooflux View PostAugust 27th - right in the middle of some time I was planning to take off to take the kids out to various placesComment
-
Got sore eyes from staring at screens. Went and sat on the bed where it's a bit darker.
Woke up 2.5 hours later.My all-time favourite Dilbert cartoon, this is: BTW, a Dumpster is a brand of skip, I think.Comment
-
Comment
-
Evening denizens
Quite a productive day, given that I didn't really do much until after lunchtime
I did a big chunk of refinement of my animation library, getting it into a very nicely structured form which allowed me to add support for almost arbitrary acceleration, deceleration, overshooting, and so forth, specified by passing parameters to a cubic Bezier function
Then I extended my DOM building library to work with XML namespaces, and added support for SVG.
Having got that working, I then decided to attempt the animation of SVG. I only had to add two functions to the library, both one-liners, to get an SVG animation working, complete with acceleration and deceleration
The end result is that I can do stuff like this:
Code:var svgLine = svg.line( { x1: 0, y1: 0, x2: 200, y2: 200, "stroke-width": 15 }); document.body.appendChild(svg.svg( { width:400, height: 400}, svg.g( { stroke: "red" }, svgLine ))); var lineAnimation = Animation.create(svgLine, [ { name: "x1", from: 0, to: 400 }, { name: "y2", from: 200, to: 400 }, ], { tweening: Animation.tweenings.elasticOut() }); var button = html.button({ type: "button"}, "Animate line"); toolbar.appendChild(button); button.addEventListener("click", function(event) { Animation.start(lineAnimation, 5000); }, true);
Comment
-
My all-time favourite Dilbert cartoon, this is: BTW, a Dumpster is a brand of skip, I think.Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- IT contractor demand floundering despite Autumn Budget 2024 Today 09:30
- An IR35 bill of £19m for National Resources Wales may be just the tip of its iceberg Nov 7 09:20
- Micro-entity accounts: Overview, and how to file with HMRC Nov 6 09:27
- Will HMRC’s 9% interest rate bully you into submission? Nov 5 09:10
- Business Account with ANNA Money Nov 1 15:51
- Autumn Budget 2024: Reeves raids contractor take-home pay Oct 31 14:11
- How Autumn Budget 2024 affects homes, property and mortgages Oct 31 09:23
- Autumn Budget 2024: Reeves raids contractor take-home pay Oct 31 09:20
- Autumn Budget 2024: Umbrella companies hit, Employer NICs hiked, and BADR heading for 18% Oct 30 16:54
- Autumn Budget 2024: chancellor’s full speech Oct 30 16:34
Comment