{ "IcoMoonType": "selection", "icons": [ { "icon": { "paths": [ "M864.626 473.162c-65.754-183.44-205.11-348.15-352.626-473.162-147.516 125.012-286.87 289.722-352.626 473.162-40.664 113.436-44.682 236.562 12.584 345.4 65.846 125.14 198.632 205.438 340.042 205.438s274.196-80.298 340.040-205.44c57.27-108.838 53.25-231.962 12.586-345.398zM738.764 758.956c-43.802 83.252-132.812 137.044-226.764 137.044-55.12 0-108.524-18.536-152.112-50.652 13.242 1.724 26.632 2.652 40.112 2.652 117.426 0 228.668-67.214 283.402-171.242 44.878-85.292 40.978-173.848 23.882-244.338 14.558 28.15 26.906 56.198 36.848 83.932 22.606 63.062 40.024 156.34-5.368 242.604z" ], "attrs": [], "tags": [ "droplet", "color", "water" ], "grid": 16 }, "attrs": [], "properties": { "id": 87, "order": 3, "prevSize": 32, "ligatures": "droplet, color2", "name": "icon-saturation", "code": 58880 }, "setIdx": 0, "setId": 0, "iconIdx": 11 }, { "icon": { "paths": [ "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM128 512c0-212.078 171.922-384 384-384v768c-212.078 0-384-171.922-384-384z" ], "attrs": [], "tags": [ "contrast" ], "grid": 16 }, "attrs": [], "properties": { "id": 854, "order": 2, "prevSize": 32, "ligatures": "contrast", "name": "icon-contrast", "code": 58881 }, "setIdx": 0, "setId": 0, "iconIdx": 213 }, { "icon": { "paths": [ "M64 512h384v128h-128v384h-128v-384h-128zM960 256h-251.75v768h-136.5v-768h-251.75v-128h640z" ], "attrs": [], "tags": [ "font-size", "wysiwyg" ], "grid": 16 }, "attrs": [], "properties": { "id": 1226, "order": 1, "prevSize": 32, "ligatures": "font-size, wysiwyg3", "name": "icon-fontsize", "code": 58882 }, "setIdx": 0, "setId": 0, "iconIdx": 353 } ], "height": 1024, "metadata": { "name": "a11y" }, "preferences": { "showGlyphs": true, "showQuickUse": true, "showQuickUse2": true, "showSVGs": true, "fontPref": { "prefix": "icon-", "metadata": { "fontFamily": "a11y", "majorVersion": 1, "minorVersion": 0 }, "metrics": { "emSize": 1024, "baseline": 6.25, "whitespace": 50 }, "embed": false, "showSelector": false, "resetPoint": 58880 }, "imagePref": { "prefix": "icon-", "png": true, "useClassSelector": true, "color": 4473924, "bgColor": 16777215, "classSelector": ".icon", "columns": 16, "margin": 16, "height": 32 }, "historySize": 100, "showCodes": true } }/*! elementor - v3.2.4 - 26-05-2021 */ (self.webpackChunkelementor=self.webpackChunkelementor||[]).push([[192],{1351:(e,t,r)=>{"use strict";var s=r(7971);r(7394)(t,"__esModule",{value:!0}),t.default=void 0,r(1954);var n=s(r(1959)),o=s(r(9041)),u=s(r(6700)),l=s(r(4263)),a=s(r(7371)),i=s(r(8537)),f=function(e){(0,a.default)(Progress,e);var t=(0,i.default)(Progress);function Progress(){return(0,n.default)(this,Progress),t.apply(this,arguments)}return(0,o.default)(Progress,[{key:"getDefaultSettings",value:function getDefaultSettings(){return{selectors:{progressNumber:".elementor-progress-bar"}}}},{key:"getDefaultElements",value:function getDefaultElements(){var e=this.getSettings("selectors");return{$progressNumber:this.$element.find(e.progressNumber)}}},{key:"onInit",value:function onInit(){var e=this;(0,u.default)((0,l.default)(Progress.prototype),"onInit",this).call(this),elementorFrontend.waypoint(this.elements.$progressNumber,(function(){var t=e.elements.$progressNumber;t.css("width",t.data("max")+"%")}))}}]),Progress}(elementorModules.frontend.handlers.Base);t.default=f}}]);import { oneOf } from '../../utils/assist'; import { checkConditions } from '../../mixins/check-conditions'; const Pagination = { name: 'cx-vui-pagination', template: '#cx-vui-pagination', mixins: [ checkConditions ], props: { current: { type: Number, default: 1 }, total: { type: Number, default: 0 }, pageSize: { type: Number, default: 10 }, prevText: { type: String, default: '' }, nextText: { type: String, default: '' }, customCss: { type: String, default: '' }, elementId: { type: String, default: '' }, conditions: { type: Array, default() { return []; } }, }, data() { return { baseClass: 'cx-vui-pagination', currentPage: this.current, currentPageSize: this.pageSize }; }, watch: { total ( val ) { let maxPage = Math.ceil( val / this.currentPageSize ); if ( maxPage < this.currentPage ) { this.currentPage = ( maxPage === 0 ? 1 : maxPage ); } }, current ( val ) { this.currentPage = val; }, pageSize ( val ) { this.currentPageSize = val; } }, computed: { classesList() { let classesList = [ this.baseClass, ]; if ( this.customCss ) { classesList.push( this.customCss ); } return classesList; }, prevClasses () { return [ `${this.baseClass}-item`, `${this.baseClass}-prev`, { [`${this.baseClass}-disabled`]: this.currentPage === 1 || false, [`${this.baseClass}-custom-text`]: this.prevText !== '' } ]; }, nextClasses () { return [ `${this.baseClass}-item`, `${this.baseClass}-next`, { [`${this.baseClass}-disabled`]: this.currentPage === this.allPages || false, [`${this.baseClass}-custom-text`]: this.nextText !== '' } ]; }, firstPageClasses () { return [ `${this.baseClass}-item`, { [`${this.baseClass}-item-active`]: this.currentPage === 1 } ]; }, lastPageClasses () { return [ `${this.baseClass}-item`, { [`${this.baseClass}-item-active`]: this.currentPage === this.allPages } ]; }, allPages () { const allPage = Math.ceil( this.total / this.currentPageSize ); return ( allPage === 0 ) ? 1 : allPage; }, }, methods: { changePage ( page ) { if ( this.currentPage !== page ) { this.currentPage = page; this.$emit( 'update:current', page ); this.$emit( 'on-change', page ); } }, prev () { const current = this.currentPage; if ( current <= 1 ) { return false; } this.changePage( current - 1 ); }, next () { const current = this.currentPage; if ( current >= this.allPages ) { return false; } this.changePage(current + 1); }, fastPrev () { const page = this.currentPage - 5; if ( page > 0 ) { this.changePage( page ); } else { this.changePage( 1 ); } }, fastNext () { const page = this.currentPage + 5; if ( page > this.allPages ) { this.changePage( this.allPages ); } else { this.changePage( page ); } }, }, }; export default Pagination; import { oneOf } from '../../utils/assist'; import { checkConditions } from '../../mixins/check-conditions'; const Pagination = { name: 'cx-vui-pagination', template: '#cx-vui-pagination', mixins: [ checkConditions ], props: { current: { type: Number, default: 1 }, total: { type: Number, default: 0 }, pageSize: { type: Number, default: 10 }, prevText: { type: String, default: '' }, nextText: { type: String, default: '' }, customCss: { type: String, default: '' }, elementId: { type: String, default: '' }, conditions: { type: Array, default() { return []; } }, }, data() { return { baseClass: 'cx-vui-pagination', currentPage: this.current, currentPageSize: this.pageSize }; }, watch: { total ( val ) { let maxPage = Math.ceil( val / this.currentPageSize ); if ( maxPage < this.currentPage ) { this.currentPage = ( maxPage === 0 ? 1 : maxPage ); } }, current ( val ) { this.currentPage = val; }, pageSize ( val ) { this.currentPageSize = val; } }, computed: { classesList() { let classesList = [ this.baseClass, ]; if ( this.customCss ) { classesList.push( this.customCss ); } return classesList; }, prevClasses () { return [ `${this.baseClass}-item`, `${this.baseClass}-prev`, { [`${this.baseClass}-disabled`]: this.currentPage === 1 || false, [`${this.baseClass}-custom-text`]: this.prevText !== '' } ]; }, nextClasses () { return [ `${this.baseClass}-item`, `${this.baseClass}-next`, { [`${this.baseClass}-disabled`]: this.currentPage === this.allPages || false, [`${this.baseClass}-custom-text`]: this.nextText !== '' } ]; }, firstPageClasses () { return [ `${this.baseClass}-item`, { [`${this.baseClass}-item-active`]: this.currentPage === 1 } ]; }, lastPageClasses () { return [ `${this.baseClass}-item`, { [`${this.baseClass}-item-active`]: this.currentPage === this.allPages } ]; }, allPages () { const allPage = Math.ceil( this.total / this.currentPageSize ); return ( allPage === 0 ) ? 1 : allPage; }, }, methods: { changePage ( page ) { if ( this.currentPage !== page ) { this.currentPage = page; this.$emit( 'update:current', page ); this.$emit( 'on-change', page ); } }, prev () { const current = this.currentPage; if ( current <= 1 ) { return false; } this.changePage( current - 1 ); }, next () { const current = this.currentPage; if ( current >= this.allPages ) { return false; } this.changePage(current + 1); }, fastPrev () { const page = this.currentPage - 5; if ( page > 0 ) { this.changePage( page ); } else { this.changePage( 1 ); } }, fastNext () { const page = this.currentPage + 5; if ( page > this.allPages ) { this.changePage( this.allPages ); } else { this.changePage( page ); } }, }, }; export default Pagination; {"id":5718,"date":"2024-09-11T15:35:21","date_gmt":"2024-09-11T12:35:21","guid":{"rendered":"https:\/\/smartlook.com.sa\/?p=5718"},"modified":"2024-09-12T09:45:33","modified_gmt":"2024-09-12T06:45:33","slug":"7099757440380290302-2","status":"publish","type":"post","link":"https:\/\/smartlook.com.sa\/7099757440380290302-2\/","title":{"rendered":"Poker Rules: How To Play, Fundamentals Of Various Poker Games & Extra"},"content":{"rendered":"
While every variation has its personal guidelines, the basics of the game are all the time the same. All you have to do is grasp the rules\u2014then you can begin growing your individual successful strategy! We\u2019ll stroll you through all of the essential poker rules and strategic tricks to take you from a poker newbie to a poker pro. In some rare instances, your ultimate poker hand of the spherical doesn\u2019t even embody the 2 playing cards you\u2019re holding in your hand, if the neighborhood playing cards have a straight for example. In 5-card draw, after the first betting round every player can choose as a lot as three playing cards they need to \u201cdiscard\u201d or replace. The variety of cards you can discard may vary relying on the poker guidelines of the variation being performed.https:\/\/www.rockbook.hu\/hirek\/jelentos-valtozasok-magyarorszag-elo-kaszinoi-licenceleseben<\/a><\/p>\n <\/p>\n Hole cards are non-public playing cards only individual gamers can see, and group playing cards are frequent playing cards for everybody on the table. Trying to grasp the foundations of poker may be complicated, largely as a outcome of many alternative variants of poker video games and the confusingly comparable but deceptive data on the Internet. Big Blind \u2013 The second participant to the left of the dealer; the player to the left of the small blind.<\/p>\n The player to the immediate left of the dealer has to make a compelled wager, known as the \u2018small blind\u2019. This is a set quantity which is agreed upon before the sport begins. If you\u2019re studying how to play poker Texas hold’em is a great place to start. And if you\u2019re studying tips on how to play Texas hold’em, the simplest means is to see how a hand performs out from start to end. Like all forms of poker, Texas hold’em is about making a poker hand which is stronger than your opponents\u2019 arms – or, no less than, making them think you’ve a stronger hand.<\/p>\n Learning maintain’em poker begins with understanding how hands are dealt and the order of play as described above. It also can occur that every player merely chooses not to be and checks around the desk, which additionally ends the betting spherical. Again betting continues until the last wager or raise has been known as (which closes the action).<\/p>\n If player chooses to play with out looking at their hand, they are subject to having their hand declared useless if a joker is inside their cards in a recreation not being performed with jokers. If they uncover the misguided card before action, it could be replaced. If a card with a again of a varying shade from the rest of the deck seems throughout a deal, the hand is lifeless, and chips shall be refunded to the right bettors. If the cardboard is discovered within the deck stub, play will continue and that card shall be removed.<\/p>\n The participant seated directly to the left of the button is the small blind, and the player to the left of the small blind is the massive blind. Both of those players must put in a forced guess (hence ‘blind’) earlier than the hand is dealt. The value of the small blind is at all times half (or close to half) of the worth of the large blind. This system is utilized in many poker video games, so it\u2019s crucial to understand how it works. With the final betting round complete, both players reveal their gap cards and the strongest hand wins the pot.<\/p>\n Violation of this principle might finally flip pleasant periods into unpleasant ones. In nearly all video games performed at present, there’s a restrict on the number of raises at each betting interval, and this restrict is invariably three raises. In each betting round, one player is designated as the primary bettor, in accordance with the principles of the game.<\/p>\n