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
- How much tax to pay HMRC on cryptocurrency? Yesterday 10:00
- Life Insurance services Jan 15 10:21
- Relevant Life Insurance Services Jan 15 10:08
- Will umbrella company regulation spark mergers and acquisitions? Jan 15 09:24
- Critical Illness Insurance for Contractors: Protect Yourself When It Matters Most Jan 14 16:26
- Relevant Life Insurance for Contractors with a Limited Company Jan 14 16:14
- Life Insurance for Contractors: Why it’s Essential Jan 14 16:09
- Guide to Income Protection Insurance for Contractors Jan 14 16:00
- Treasury minister told six actions can save contractor umbrella sector from ‘existential’ crisis Jan 14 09:40
- Critical Illness Services Jan 13 16:41
Comment