{"id":29610540,"url":"https://github.com/cosmocode/jquery-pageslide","last_synced_at":"2025-07-20T20:08:06.864Z","repository":{"id":27722003,"uuid":"31209345","full_name":"cosmocode/jquery-pageslide","owner":"cosmocode","description":"Fork of https://github.com/srobbin/jquery-pageslide/","archived":false,"fork":false,"pushed_at":"2017-04-10T09:41:48.000Z","size":160,"stargazers_count":10,"open_issues_count":1,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-04-15T00:37:47.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cosmocode.png","metadata":{"files":{"readme":"README.textile","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-23T13:34:03.000Z","updated_at":"2024-03-28T07:18:06.000Z","dependencies_parsed_at":"2022-09-03T03:24:32.951Z","dependency_job_id":null,"html_url":"https://github.com/cosmocode/jquery-pageslide","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cosmocode/jquery-pageslide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmocode%2Fjquery-pageslide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmocode%2Fjquery-pageslide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmocode%2Fjquery-pageslide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmocode%2Fjquery-pageslide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cosmocode","download_url":"https://codeload.github.com/cosmocode/jquery-pageslide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmocode%2Fjquery-pageslide/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266189677,"owners_count":23890065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-20T20:08:06.199Z","updated_at":"2025-07-20T20:08:06.854Z","avatar_url":"https://github.com/cosmocode.png","language":"HTML","funding_links":["https://www.paypal.com/cgi-bin/webscr?business=scott@halobrite.com\u0026cmd=_xclick\u0026currency_code=USD\u0026amount=17\u0026item_name=jQuery%20PageSlide%20Premium%20Support"],"categories":[],"sub_categories":[],"readme":"h1. jQuery PageSlide\n\nPageSlide is a jQuery plugin which slides a webpage over to reveal an additional interaction pane.\n\nh2. Demo\n\nThere are a couple of examples included with this package. Or, if you can't wait to download it, see it live on the \"responsive demo\":http://srobbin.github.com/jquery-pageslide or \"original project page\":http://srobbin.com/blog/jquery-pageslide/.\n\nh2. Options\n\nh3. speed\n\nThe speed at which the page slides over. Accepts standard jQuery effects speeds (e.g. 'fast', 'normal' or milliseconds). (default=200)\n\nh3. direction\n\nWhich direction does the page slide? Accepts 'left' or 'right'. (default='right')\n\nh3. modal\n\nBy default, when pageslide opens, you can click on the document to close it. If modal is set to 'true', then you must explicitly close PageSlide using $.pageslide.close(); (default=false)\n\nh3. iframe\n\nBy default, linked pages are loaded into an iframe. Set this to false if you don't want an iframe. (default=true)\n\nh3. href\n\nOverride the source of the content. Optional in most cases, but required when opening pageslide programmatically (e.g. \u003ccode\u003e$.pageslide({ href: '#some-element' });\u003c/code\u003e ) (default=null)\n\nh2. Setup\n\nIn the HEAD tag:\n\u003cpre\u003e\u003ccode\u003e\u003clink rel=\"stylesheet\" type=\"text/css\" href=\"jquery.pageslide.css\"\u003e\u003c/code\u003e\u003c/pre\u003e\n\nIdeally, near the bottom of the page.\n\u003cpre\u003e\u003ccode\u003e\u003cscript type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"jquery.pageslide.min.js\"\u003e\u003c/script\u003e\n\u003c/code\u003e\u003c/pre\u003e\n\nTo use, call pageslide on an \u003ccode\u003e\u003ca\u003e\u003c/code\u003e tag that either links to a page or an anchor of a hidden element.\n\u003cpre\u003e\u003ccode\u003e\u003cscript type=\"text/javascript\"\u003e\n    $('a').pageslide();\n\u003c/script\u003e\n\u003c/code\u003e\u003c/pre\u003e\n\nOr, open pageslide programatically:\n\u003cpre\u003e\u003ccode\u003e\u003cscript type=\"text/javascript\"\u003e\n    $.pageslide({ href: '#some-element' });\n    $.pageslide({ href: 'some-page.html' });\n\u003c/script\u003e\n\u003c/code\u003e\u003c/pre\u003e\n\nTo close pageslide programatically:\n\u003cpre\u003e\u003ccode\u003e\u003cscript type=\"text/javascript\"\u003e\n    $.pageslide.close();\n\u003c/script\u003e\n\u003c/code\u003e\u003c/pre\u003e\n\nh2. Changelog\n\nh3. Version 2.0\n\n* Completely rewritten\n* Externalized CSS\n* Content loaded into an iframe\n\nh3. Version 1.3\n\n* Older versions of PageSlide are located in this repository, however if you would like to contribute to the original plugin's development, please use contributor \"Derek Perez's repository\":https://github.com/perezd/jquery-pageslide.\n\nh2. Support\n\nBasic support is offered through Github’s issues tracker. Many requests are resolved through the help of fellow PageSlide users and myself, however assistance is not guaranteed or timely.\n\nIf you are in need of immediate support, or would like customizations to the script, \"Premium Support\":https://www.paypal.com/cgi-bin/webscr?business=scott@halobrite.com\u0026cmd=_xclick\u0026currency_code=USD\u0026amount=17\u0026item_name=jQuery%20PageSlide%20Premium%20Support is available for $17. Premium Support provides you with direct email access to me, and allows me to set time aside to help solve your problem quickly.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmocode%2Fjquery-pageslide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosmocode%2Fjquery-pageslide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmocode%2Fjquery-pageslide/lists"}