September 10th, 2014 is the Internet Slowdown! The goal of this project is to allow anyone with a web site to run their own campaign to save net neutrality. Simply embed a couple of lines of Javascript and you're good to go!
To stay up-to-date on developments, please subscribe to our developer mailing list. If you have any problems or questions regarding the widget, please submit an issue or email Jeff Lyon.
- Developer embeds widget code snippet on their site (either modal or banner)
- On September 10th, 2014, users are shown the widget on their first page view
- Users can interact with or dismiss the widget
- A cookie is written so the user doesn't see the widget again
Please take a look at widget.js if you want to see exactly what you'll be embedding on your page.
- Compatible with Firefox, Chrome, Safari and Internet Explorer 10+
- Embed the widget Javascript code on your page
- Optionally pass in customization parameters (see below), or defaults are used
- Widget checks to make sure it should be shown (September 10th 2014 and hasn't been shown to this user before, via cookie). You can override this check for testing purposes
- Widget preloads any images required for the chosen animation
- Widget injects a floating
iframe
onto your page. All but the most trivial styles and interactions take place in theiframe
so as not to interfere with your CSS and Javascript - Animation displays in floating
iframe
- The user can dismiss the
iframe
and a cookie is written so it won't show again (unless you override)
See the demo: Development version
The modal animation will show up front-and-center on your page, prompting visitors to contact Congress and the White House.
To show the modal on September 10th, paste this into your HEAD
:
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
If you define an object called _bftn_options
before including the widget code,
you can pass some properties in to customize the default behavior.
skipEmailSignup
: (Boolean, default false) Disables the email signup and only shows the Call Congress tool.skipCallTool
: (Boolean, default false) Disables the Call Congress tool and only shows the email signup form. Creates a quantum singularity if theskipEmailSignup
option is also used.fastAnimation
: (Boolean, default false) Fast forwards through the intro animation and makes the action form appear much faster.
Call Congress modal with email signup disabled. Paste this into your HEAD
:
<script type="text/javascript">
var _bftn_options = {
skipEmailSignup: true
}
</script>
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
Modal with Call Congress tool disabled. Paste this into your HEAD
:
<script type="text/javascript">
var _bftn_options = {
skipCallTool: true
}
</script>
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
The banner shows up in one of the corners (you can customize), or as a strip along the top or bottom on mobile devices. You can choose a light or dark theme.
To show the banner on September 10th, paste this code into your HEAD
tag:
<script type="text/javascript">
var _bftn_options = { animation: 'banner' }
</script>
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
Notice the _bftn_options
object in the code snippet above? You can pass some
other options in to customize the position of the banner on-screen.
theme
: The theme. Either light (default) or darkposition
: The position of the banner. Can be topright (default) or bottomrightoffsetY
: The number of pixels to "nudge" the banner away from the top of the windowurl
: The URL that clicking the banner should go to. Default is https://www.battleforthenet.com
Banner with dark theme, bottom right corner. Paste this into your HEAD
:
<script type="text/javascript">
var _bftn_options = {
animation: 'banner',
position: 'bottomright',
theme: 'dark'
}
</script>
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
Banner with custom link, paste this into your HEAD
:
<script type="text/javascript">
var _bftn_options = {
animation: 'banner',
url: 'https://www.YOURPETITIONPAGEHERE.org'
}
</script>
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
The widget is designed to only appear on September 10th, 2014, and only once, per user, per device. If you'd like to force it to show up on your page for testing, please (re)load the page with #SHOW_BFTN_WIDGET in the URL.
If you want to show off the modal to your users prior to September 10th (thanks!) you can use this code to directly embed it on your page:
To embed the action form on your page, use this code:
<iframe style="width: 750px; height: 467px;" frameborder="no"
src="https://widget.battleforthenet.com/iframe/modal.html#EMBED">
</iframe>
Modern browsers, and the two latest versions of Internet Explorer (10 and 11).