
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
ember-cli-basicscroll
Advanced tools
standalone parallax scrolling with CSS variables
ember install ember-cli-basicscroll
Easily add parallax scrolling to any element using the {{basic-scroll}} modifier.
<div class="box" {{basic-scroll from="bottom-bottom" to="top-top" direct=true props=this.props}}></div>
Here are the props for the parallax box above:
import Controller from '@ember/controller';
export default class IndexController extends Controller {
get props () {
return {
'--r': {
from: '0',
to: '1turn'
},
'--tx': {
from: '-100px',
to: '500px'
}
}
}
}
Lastly, here is the css for the parallax box above.
html, body {
height: 1500px;
}
.box {
top: 500px;
position: relative;
width: 5em;
height: 5em;
background: linear-gradient(135deg, #3cdddd, #ff1ac6);
transform: translateX(var(--tx)) rotate(var(--r));
transition: transform .1s linear;
will-change: transform;
}
See the basicScroll documentation for more information on how to configure the modifier for parallax scrolling.
See the Contributing guide for details.
This project is licensed under the Apache-2.0.
FAQs
The default blueprint for ember-cli addons.
The npm package ember-cli-basicscroll receives a total of 0 weekly downloads. As such, ember-cli-basicscroll popularity was classified as not popular.
We found that ember-cli-basicscroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.