├── .gitattributes ├── .gitignore ├── archive.php ├── blog.php ├── css ├── reset.css └── responsive.css ├── footer.php ├── functions.php ├── header.php ├── index.php ├── js ├── jquery.slides.js └── jquery.slides.min.js ├── page.php ├── sidebar.php ├── single.php ├── slideshow.php └── style.css /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

6 | 7 | 8 | 17 | 18 | 19 |

No se encontraron Articulos

20 | 21 | 22 | 26 |
27 | 28 |
29 | 30 | -------------------------------------------------------------------------------- /blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconmasters/MyBlog-WordpressTheme/a9a14ca9aaa248f615c0fe941f62183f0366eafd/blog.php -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ 2 | 3 | /* ========================================================================== 4 | HTML5 display definitions 5 | ========================================================================== */ 6 | 7 | /** 8 | * Correct `block` display not defined in IE 8/9. 9 | */ 10 | 11 | article, 12 | aside, 13 | details, 14 | figcaption, 15 | figure, 16 | footer, 17 | header, 18 | hgroup, 19 | main, 20 | nav, 21 | section, 22 | summary { 23 | display: block; 24 | } 25 | 26 | /** 27 | * Correct `inline-block` display not defined in IE 8/9. 28 | */ 29 | 30 | audio, 31 | canvas, 32 | video { 33 | display: inline-block; 34 | } 35 | 36 | /** 37 | * Prevent modern browsers from displaying `audio` without controls. 38 | * Remove excess height in iOS 5 devices. 39 | */ 40 | 41 | audio:not([controls]) { 42 | display: none; 43 | height: 0; 44 | } 45 | 46 | /** 47 | * Address `[hidden]` styling not present in IE 8/9. 48 | * Hide the `template` element in IE, Safari, and Firefox < 22. 49 | */ 50 | 51 | [hidden], 52 | template { 53 | display: none; 54 | } 55 | 56 | /* ========================================================================== 57 | Base 58 | ========================================================================== */ 59 | 60 | /** 61 | * 1. Set default font family to sans-serif. 62 | * 2. Prevent iOS text size adjust after orientation change, without disabling 63 | * user zoom. 64 | */ 65 | 66 | html { 67 | font-family: sans-serif; /* 1 */ 68 | -ms-text-size-adjust: 100%; /* 2 */ 69 | -webkit-text-size-adjust: 100%; /* 2 */ 70 | } 71 | 72 | /** 73 | * Remove default margin. 74 | */ 75 | 76 | body { 77 | margin: 0; 78 | } 79 | 80 | /* ========================================================================== 81 | Links 82 | ========================================================================== */ 83 | 84 | /** 85 | * Remove the gray background color from active links in IE 10. 86 | */ 87 | 88 | a { 89 | background: transparent; 90 | } 91 | 92 | /** 93 | * Address `outline` inconsistency between Chrome and other browsers. 94 | */ 95 | 96 | a:focus { 97 | outline: thin dotted; 98 | } 99 | 100 | /** 101 | * Improve readability when focused and also mouse hovered in all browsers. 102 | */ 103 | 104 | a:active, 105 | a:hover { 106 | outline: 0; 107 | } 108 | 109 | /* ========================================================================== 110 | Typography 111 | ========================================================================== */ 112 | 113 | /** 114 | * Address variable `h1` font-size and margin within `section` and `article` 115 | * contexts in Firefox 4+, Safari 5, and Chrome. 116 | */ 117 | 118 | h1 { 119 | font-size: 2em; 120 | margin: 0.67em 0; 121 | } 122 | 123 | /** 124 | * Address styling not present in IE 8/9, Safari 5, and Chrome. 125 | */ 126 | 127 | abbr[title] { 128 | border-bottom: 1px dotted; 129 | } 130 | 131 | /** 132 | * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. 133 | */ 134 | 135 | b, 136 | strong { 137 | font-weight: bold; 138 | } 139 | 140 | /** 141 | * Address styling not present in Safari 5 and Chrome. 142 | */ 143 | 144 | dfn { 145 | font-style: italic; 146 | } 147 | 148 | /** 149 | * Address differences between Firefox and other browsers. 150 | */ 151 | 152 | hr { 153 | -moz-box-sizing: content-box; 154 | box-sizing: content-box; 155 | height: 0; 156 | } 157 | 158 | /** 159 | * Address styling not present in IE 8/9. 160 | */ 161 | 162 | mark { 163 | background: #ff0; 164 | color: #000; 165 | } 166 | 167 | /** 168 | * Correct font family set oddly in Safari 5 and Chrome. 169 | */ 170 | 171 | code, 172 | kbd, 173 | pre, 174 | samp { 175 | font-family: monospace, serif; 176 | font-size: 1em; 177 | } 178 | 179 | /** 180 | * Improve readability of pre-formatted text in all browsers. 181 | */ 182 | 183 | pre { 184 | white-space: pre-wrap; 185 | } 186 | 187 | /** 188 | * Set consistent quote types. 189 | */ 190 | 191 | q { 192 | quotes: "\201C" "\201D" "\2018" "\2019"; 193 | } 194 | 195 | /** 196 | * Address inconsistent and variable font size in all browsers. 197 | */ 198 | 199 | small { 200 | font-size: 80%; 201 | } 202 | 203 | /** 204 | * Prevent `sub` and `sup` affecting `line-height` in all browsers. 205 | */ 206 | 207 | sub, 208 | sup { 209 | font-size: 75%; 210 | line-height: 0; 211 | position: relative; 212 | vertical-align: baseline; 213 | } 214 | 215 | sup { 216 | top: -0.5em; 217 | } 218 | 219 | sub { 220 | bottom: -0.25em; 221 | } 222 | 223 | /* ========================================================================== 224 | Embedded content 225 | ========================================================================== */ 226 | 227 | /** 228 | * Remove border when inside `a` element in IE 8/9. 229 | */ 230 | 231 | img { 232 | border: 0; 233 | } 234 | 235 | /** 236 | * Correct overflow displayed oddly in IE 9. 237 | */ 238 | 239 | svg:not(:root) { 240 | overflow: hidden; 241 | } 242 | 243 | /* ========================================================================== 244 | Figures 245 | ========================================================================== */ 246 | 247 | /** 248 | * Address margin not present in IE 8/9 and Safari 5. 249 | */ 250 | 251 | figure { 252 | margin: 0; 253 | } 254 | 255 | /* ========================================================================== 256 | Forms 257 | ========================================================================== */ 258 | 259 | /** 260 | * Define consistent border, margin, and padding. 261 | */ 262 | 263 | fieldset { 264 | border: 1px solid #c0c0c0; 265 | margin: 0 2px; 266 | padding: 0.35em 0.625em 0.75em; 267 | } 268 | 269 | /** 270 | * 1. Correct `color` not being inherited in IE 8/9. 271 | * 2. Remove padding so people aren't caught out if they zero out fieldsets. 272 | */ 273 | 274 | legend { 275 | border: 0; /* 1 */ 276 | padding: 0; /* 2 */ 277 | } 278 | 279 | /** 280 | * 1. Correct font family not being inherited in all browsers. 281 | * 2. Correct font size not being inherited in all browsers. 282 | * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. 283 | */ 284 | 285 | button, 286 | input, 287 | select, 288 | textarea { 289 | font-family: inherit; /* 1 */ 290 | font-size: 100%; /* 2 */ 291 | margin: 0; /* 3 */ 292 | } 293 | 294 | /** 295 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in 296 | * the UA stylesheet. 297 | */ 298 | 299 | button, 300 | input { 301 | line-height: normal; 302 | } 303 | 304 | /** 305 | * Address inconsistent `text-transform` inheritance for `button` and `select`. 306 | * All other form control elements do not inherit `text-transform` values. 307 | * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. 308 | * Correct `select` style inheritance in Firefox 4+ and Opera. 309 | */ 310 | 311 | button, 312 | select { 313 | text-transform: none; 314 | } 315 | 316 | /** 317 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` 318 | * and `video` controls. 319 | * 2. Correct inability to style clickable `input` types in iOS. 320 | * 3. Improve usability and consistency of cursor style between image-type 321 | * `input` and others. 322 | */ 323 | 324 | button, 325 | html input[type="button"], /* 1 */ 326 | input[type="reset"], 327 | input[type="submit"] { 328 | -webkit-appearance: button; /* 2 */ 329 | cursor: pointer; /* 3 */ 330 | } 331 | 332 | /** 333 | * Re-set default cursor for disabled elements. 334 | */ 335 | 336 | button[disabled], 337 | html input[disabled] { 338 | cursor: default; 339 | } 340 | 341 | /** 342 | * 1. Address box sizing set to `content-box` in IE 8/9/10. 343 | * 2. Remove excess padding in IE 8/9/10. 344 | */ 345 | 346 | input[type="checkbox"], 347 | input[type="radio"] { 348 | box-sizing: border-box; /* 1 */ 349 | padding: 0; /* 2 */ 350 | } 351 | 352 | /** 353 | * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 354 | * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome 355 | * (include `-moz` to future-proof). 356 | */ 357 | 358 | input[type="search"] { 359 | -webkit-appearance: textfield; /* 1 */ 360 | -moz-box-sizing: content-box; 361 | -webkit-box-sizing: content-box; /* 2 */ 362 | box-sizing: content-box; 363 | } 364 | 365 | /** 366 | * Remove inner padding and search cancel button in Safari 5 and Chrome 367 | * on OS X. 368 | */ 369 | 370 | input[type="search"]::-webkit-search-cancel-button, 371 | input[type="search"]::-webkit-search-decoration { 372 | -webkit-appearance: none; 373 | } 374 | 375 | /** 376 | * Remove inner padding and border in Firefox 4+. 377 | */ 378 | 379 | button::-moz-focus-inner, 380 | input::-moz-focus-inner { 381 | border: 0; 382 | padding: 0; 383 | } 384 | 385 | /** 386 | * 1. Remove default vertical scrollbar in IE 8/9. 387 | * 2. Improve readability and alignment in all browsers. 388 | */ 389 | 390 | textarea { 391 | overflow: auto; /* 1 */ 392 | vertical-align: top; /* 2 */ 393 | } 394 | 395 | /* ========================================================================== 396 | Tables 397 | ========================================================================== */ 398 | 399 | /** 400 | * Remove most spacing between table cells. 401 | */ 402 | 403 | table { 404 | border-collapse: collapse; 405 | border-spacing: 0; 406 | } 407 | -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | /*Medida para tablets horizontal*/ 2 | @media screen and (max-width:1024px){ 3 | header nav ul li { 4 | margin:0px 5px 10px 0px; 5 | background:#bf2222; 6 | padding:10px; 7 | } 8 | 9 | header nav ul li a:hover { 10 | color:#fff; 11 | } 12 | 13 | #main #no-slide { 14 | display:none; 15 | } 16 | 17 | #main #articles_list #pagination p a { 18 | margin:10px 20px 10px 20px; 19 | background:#bf2222; 20 | color:#fff; 21 | padding:10px; 22 | } 23 | 24 | footer .widget { 25 | width:50%; 26 | } 27 | 28 | .widget ul li { 29 | border-bottom:1px solid #333333; 30 | padding:5px 0px; 31 | } 32 | 33 | } 34 | 35 | /*Medida para tablets en vertical*/ 36 | @media screen and (max-width:768px){ 37 | header #logo { 38 | width:100%; 39 | background:#333333; 40 | } 41 | 42 | header #logo p { 43 | text-align:center; 44 | } 45 | 46 | header #logo span { 47 | text-align:center; 48 | left:50px; 49 | } 50 | 51 | header nav { 52 | width:100%; 53 | float:left; 54 | margin-top:10px; 55 | } 56 | 57 | header nav ul { 58 | float:left; 59 | } 60 | 61 | #main #articles_list { 62 | width:100%; 63 | } 64 | 65 | #main aside { 66 | width:100%; 67 | clear:both; 68 | } 69 | 70 | .widget { 71 | margin-bottom:40px; 72 | width:100%; 73 | } 74 | } 75 | 76 | /*Medida smartphones*/ 77 | @media screen and (max-width:400px){ 78 | #main #articles_list article .thumb { 79 | width:100%; 80 | float:left; 81 | margin-bottom:20px; 82 | } 83 | 84 | footer .widget { 85 | width:100%; 86 | } 87 | } -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 'Menu superior', 4 | )); 5 | 6 | add_theme_support( 'post-thumbnails'); 7 | add_image_size( 'slider_thumbs', 470, 300, true ); 8 | add_image_size( 'list_articles_thumbs', 450, 370, true ); 9 | 10 | register_sidebar(array( 11 | 'name' => 'Sidebar', 12 | 'before_widget' => '
', 13 | 'after_widget' => '
', 14 | 'before_title' => '

', 15 | 'after_title' => '

', 16 | )); 17 | 18 | register_sidebar(array( 19 | 'name' => 'Footer', 20 | 'before_widget' => '
', 21 | 'after_widget' => '
', 22 | 'before_title' => '

', 23 | 'after_title' => '

', 24 | )); 25 | 26 | ?> -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My Blog 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 21 | 22 | 23 | 24 |
25 | 26 | 34 |
-------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 21 | 22 | 23 |

No se encontraron Articulos

24 | 25 | 26 | 30 |
31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /js/jquery.slides.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.6.1 2 | (function() { 3 | 4 | (function($, window, document) { 5 | var Plugin, defaults, pluginName; 6 | pluginName = "slidesjs"; 7 | defaults = { 8 | width: 940, 9 | height: 528, 10 | start: 1, 11 | navigation: { 12 | active: true, 13 | effect: "slide" 14 | }, 15 | pagination: { 16 | active: true, 17 | effect: "slide" 18 | }, 19 | play: { 20 | active: false, 21 | effect: "slide", 22 | interval: 5000, 23 | auto: false, 24 | swap: true, 25 | pauseOnHover: false, 26 | restartDelay: 2500 27 | }, 28 | effect: { 29 | slide: { 30 | speed: 500 31 | }, 32 | fade: { 33 | speed: 300, 34 | crossfade: true 35 | } 36 | }, 37 | callback: { 38 | loaded: function() {}, 39 | start: function() {}, 40 | complete: function() {} 41 | } 42 | }; 43 | Plugin = (function() { 44 | 45 | function Plugin(element, options) { 46 | this.element = element; 47 | this.options = $.extend(true, {}, defaults, options); 48 | this._defaults = defaults; 49 | this._name = pluginName; 50 | this.init(); 51 | } 52 | 53 | return Plugin; 54 | 55 | })(); 56 | Plugin.prototype.init = function() { 57 | var $element, nextButton, pagination, playButton, prevButton, stopButton, 58 | _this = this; 59 | $element = $(this.element); 60 | this.data = $.data(this); 61 | $.data(this, "animating", false); 62 | $.data(this, "total", $element.children().not(".slidesjs-navigation", $element).length); 63 | $.data(this, "current", this.options.start - 1); 64 | $.data(this, "vendorPrefix", this._getVendorPrefix()); 65 | if (typeof TouchEvent !== "undefined") { 66 | $.data(this, "touch", true); 67 | this.options.effect.slide.speed = this.options.effect.slide.speed / 2; 68 | } 69 | $element.css({ 70 | overflow: "hidden" 71 | }); 72 | $element.slidesContainer = $element.children().not(".slidesjs-navigation", $element).wrapAll("
", $element).parent().css({ 73 | overflow: "hidden", 74 | position: "relative" 75 | }); 76 | $(".slidesjs-container", $element).wrapInner("
", $element).children(); 77 | $(".slidesjs-control", $element).css({ 78 | position: "relative", 79 | left: 0 80 | }); 81 | $(".slidesjs-control", $element).children().addClass("slidesjs-slide").css({ 82 | position: "absolute", 83 | top: 0, 84 | left: 0, 85 | width: "100%", 86 | zIndex: 0, 87 | display: "none", 88 | webkitBackfaceVisibility: "hidden" 89 | }); 90 | $.each($(".slidesjs-control", $element).children(), function(i) { 91 | var $slide; 92 | $slide = $(this); 93 | return $slide.attr("slidesjs-index", i); 94 | }); 95 | if (this.data.touch) { 96 | $(".slidesjs-control", $element).on("touchstart", function(e) { 97 | return _this._touchstart(e); 98 | }); 99 | $(".slidesjs-control", $element).on("touchmove", function(e) { 100 | return _this._touchmove(e); 101 | }); 102 | $(".slidesjs-control", $element).on("touchend", function(e) { 103 | return _this._touchend(e); 104 | }); 105 | } 106 | $element.fadeIn(0); 107 | this.update(); 108 | if (this.data.touch) { 109 | this._setuptouch(); 110 | } 111 | $(".slidesjs-control", $element).children(":eq(" + this.data.current + ")").eq(0).fadeIn(0, function() { 112 | return $(this).css({ 113 | zIndex: 10 114 | }); 115 | }); 116 | if (this.options.navigation.active) { 117 | prevButton = $("", { 118 | "class": "slidesjs-previous slidesjs-navigation", 119 | href: "#", 120 | title: "Previous", 121 | text: "Previous" 122 | }).appendTo($element); 123 | nextButton = $("", { 124 | "class": "slidesjs-next slidesjs-navigation", 125 | href: "#", 126 | title: "Next", 127 | text: "Next" 128 | }).appendTo($element); 129 | } 130 | $(".slidesjs-next", $element).click(function(e) { 131 | e.preventDefault(); 132 | _this.stop(true); 133 | return _this.next(_this.options.navigation.effect); 134 | }); 135 | $(".slidesjs-previous", $element).click(function(e) { 136 | e.preventDefault(); 137 | _this.stop(true); 138 | return _this.previous(_this.options.navigation.effect); 139 | }); 140 | if (this.options.play.active) { 141 | playButton = $("", { 142 | "class": "slidesjs-play slidesjs-navigation", 143 | href: "#", 144 | title: "Play", 145 | text: "Play" 146 | }).appendTo($element); 147 | stopButton = $("", { 148 | "class": "slidesjs-stop slidesjs-navigation", 149 | href: "#", 150 | title: "Stop", 151 | text: "Stop" 152 | }).appendTo($element); 153 | playButton.click(function(e) { 154 | e.preventDefault(); 155 | return _this.play(true); 156 | }); 157 | stopButton.click(function(e) { 158 | e.preventDefault(); 159 | return _this.stop(true); 160 | }); 161 | if (this.options.play.swap) { 162 | stopButton.css({ 163 | display: "none" 164 | }); 165 | } 166 | } 167 | if (this.options.pagination.active) { 168 | pagination = $("