
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
jquery-aslider
Advanced tools
slider plugin for jQuery, supports CSS animations and grid transitions. Demo
transform, left and top properties which are required for the transitioning.Install with bower:
bower install jquery-aslider
Or with npm:
npm install jquery-aslider
Or simply download the latest release.
First, include jQuery and jquery-aslider on your page. Then to create a slider:
HTML:
<div class="slider">
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
</div>
CSS:
.slider {
position: relative; /* 1 */
overflow: hidden; /* 1 */
}
.slider ul {
position: absolute; /* 1 */
width: 300%; /* 2 */
list-style: none; /* 3 */
margin: 0; /* 3 */
padding: 0; /* 3 */
}
.slider li {
float: left; /* 3 */
width: 33.33%; /* 2 */
}
.slider li:nth-child(odd) { background: #F6F4F0; } /* 3 */
.slider li:nth-child(even) { background: #cdcdcd; } /* 3 */
1 - required, 2 - make it responsive, 3 - aesthetics
JavaScript:
$('.slider').aslider();
Have a look at the docs for all the configuration options, API methods and examples. For more examples, also have a look at the example or view the source on the demo site.
Fork, update and submit a pull request.
FAQs
slider plugin for jQuery
We found that jquery-aslider 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.